mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
25 lines
501 B
Nix
25 lines
501 B
Nix
{config, pkgs, ...}:
|
|
{
|
|
imports = [
|
|
./theme.nix
|
|
./git.nix
|
|
./neovim.nix
|
|
];
|
|
xsession.numlock.enable = true;
|
|
programs.home-manager.enable = true;
|
|
home = {
|
|
username = "root";
|
|
homeDirectory = "/root";
|
|
stateVersion = "22.11";
|
|
file = {
|
|
".config/Thunar" = {
|
|
source = ./config/Thunar;
|
|
recursive = true;
|
|
};
|
|
".config/neofetch/config.conf" = {
|
|
source = ./config/neofetch/config.conf;
|
|
recursive = false;
|
|
};
|
|
};
|
|
};
|
|
}
|