nixos/home-manager/root.nix
ISnortPennies 532ae0d63e neovim reconfiguration
and configuring st
2022-09-22 18:07:49 -04:00

25 lines
483 B
Nix

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