nixos/home-manager/root.nix
ISnortPennies f353281d6b updated afk-cmds pkg
removed AFKCommands
moved moonfly plugin to correct location
switched from alacritty to st
2022-09-24 00:16:50 -04:00

20 lines
367 B
Nix

{config, pkgs, ...}:
{
imports = [
./theme.nix
./git.nix
./neovim
];
programs.home-manager.enable = true;
home = {
username = "root";
homeDirectory = "/root";
stateVersion = "22.11";
file = {
".config/neofetch/config.conf" = {
source = ./config/neofetch/config.conf;
recursive = false;
};
};
};
}