fix: Fix more installation errors and potential security flaws
This commit is contained in:
parent
86c41180b8
commit
dd929d89d3
6 changed files with 29 additions and 15 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue