homemanger for root

This commit is contained in:
joy 2024-11-05 19:55:59 +01:00
parent b470af6d33
commit a9890846b2
6 changed files with 21 additions and 2 deletions

View file

@ -3,6 +3,7 @@
extraSpecialArgs = {inherit inputs;};
users = {
"joy" = import ./home.nix;
"root" = import ./root.nix;
};
};
}

View file

@ -0,0 +1,3 @@
{
programs.fastfetch.enable = true;
}

View file

@ -10,6 +10,7 @@
./helix
./newsboat
./zoxide
./fastfetch
./misc
];
}

View file

@ -9,12 +9,10 @@
ffmpeg
lm_sensors
alejandra
tree
zip
unzip
yt-dlp
wget
fastfetch
cmatrix
cava
nitch

View file

@ -0,0 +1,8 @@
{
imports = [
./zsh
./helix
./zoxide
./misc
];
}

View file

@ -9,5 +9,13 @@
stateVersion = "23.11";
};
};
users.root = {
programs.home-manager.enable = true;
home = {
username = "root";
homeDirectory = "/root";
stateVersion = "23.11";
};
};
};
}