[outpost] Add htop, enable experimental nix features

This commit is contained in:
ctsk
2023-11-11 13:56:38 +01:00
parent d62542269a
commit 6e78e1af47

View File

@@ -47,7 +47,10 @@ in
}; };
}; };
environment.systemPackages = [ pkgs.raspberrypi-eeprom ]; environment.systemPackages = [
pkgs.raspberrypi-eeprom
pkgs.htop
];
security = { security = {
sudo = { sudo = {
@@ -58,6 +61,7 @@ in
nix.settings = { nix.settings = {
trusted-users = [ "@wheel" ]; trusted-users = [ "@wheel" ];
trusted-public-keys = [ pubkeys.labyrinth.nix ]; trusted-public-keys = [ pubkeys.labyrinth.nix ];
experimental-features = "nix-command flakes";
}; };
system.stateVersion = "23.11"; system.stateVersion = "23.11";