fix: Fix more installation errors and potential security flaws

This commit is contained in:
Tera << 8 2025-05-05 16:28:37 -04:00
parent 86c41180b8
commit dd929d89d3
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
6 changed files with 29 additions and 15 deletions

View file

@ -30,11 +30,10 @@
extraGroups = [
"wheel"
"networkmanager"
"docker"
];
openssh.authorizedKeys.keys = [
(builtins.readFile ../../secrets/id_user.pub)
(builtins.readFile ../../data/id_user.pub)
];
};
@ -45,10 +44,13 @@
boot.supportedFilesystems = [];
# Services
services.docker.enable = true;
virtualisation.docker = {
enable = true;
storageDriver = "btrfs";
};
environment.systemPackages = builtins.attrValues {
inherit (pkgs.unstable) htop btop micro nano;
inherit (pkgs) htop btop micro nano;
};
system.stateVersion = "24.11";