Fix root config
This commit is contained in:
parent
da6efc7157
commit
71c0ddb2d3
10
flake.nix
10
flake.nix
@ -319,12 +319,16 @@
|
|||||||
}; # end nixosConfigurations
|
}; # end nixosConfigurations
|
||||||
|
|
||||||
homeConfigurations = {
|
homeConfigurations = {
|
||||||
# minimal root config for installing terminfo
|
# minimal root config
|
||||||
"root@rpi4" = mkHome {
|
"root@rpi4" = mkHome {
|
||||||
system = "aarch64-linux";
|
system = "aarch64-linux";
|
||||||
stateVersion = "23.11";
|
stateVersion = "23.11";
|
||||||
config.programs = {
|
username = "root";
|
||||||
bash.enable = true;
|
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;
|
nixpkgs = inputs.nixpkgs-unstable;
|
||||||
home-manager = inputs.home-manager-unstable;
|
home-manager = inputs.home-manager-unstable;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user