Fix root config

This commit is contained in:
NullBite 2024-04-25 08:54:17 -04:00
parent da6efc7157
commit 71c0ddb2d3
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -319,12 +319,16 @@
}; # end nixosConfigurations
homeConfigurations = {
# minimal root config for installing terminfo
# minimal root config
"root@rpi4" = mkHome {
system = "aarch64-linux";
stateVersion = "23.11";
config.programs = {
bash.enable = true;
username = "root";
config = { pkgs, ...}: {
programs.bash.enable = true;
# update nix system-wide since it's installed via root profile
home.packages = with pkgs; [ nix ];
};
nixpkgs = inputs.nixpkgs-unstable;
home-manager = inputs.home-manager-unstable;