nixos/home-manager/root.nix
2022-09-19 20:03:19 -04:00

25 lines
487 B
Nix

{config, pkgs, ...}:
{
imports = [
./theme.nix
./git.nix
./neovim.nix
./alacritty.nix
];
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;
};
};
};
}