nixos/home-manager/root.nix
ISnortPennies 6b7ce7d133 fixed refreshrate on desktop
switch to neovim as a pager
added parrot and mining modules
deleted amd module
moved the rest of vfio configuration to vfio.nix
moved git from home-manager to system configuration
2023-01-23 23:32:11 -05:00

17 lines
319 B
Nix

{settings, ...}: {
imports = [
./theme.nix
./neovim
];
home = {
username = "root";
homeDirectory = "/root";
stateVersion = settings.version;
file = {
".config/neofetch/config.conf" = {
source = ./config/neofetch/config.conf;
recursive = false;
};
};
};
}