feat: add docker

This commit is contained in:
Swarsel 2024-08-28 17:32:48 +02:00
parent dc40a9fddd
commit 38845bf03d
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
4 changed files with 87 additions and 81 deletions

View file

@ -5012,7 +5012,7 @@ This ensures that all user-configuration happens here in the config file.
isNormalUser = true;
description = "Leon S";
hashedPasswordFile = lib.mkIf (!config.swarselsystems.initialSetup) config.sops.secrets.swarseluser.path;
extraGroups = [ "networkmanager" "wheel" "lp" "audio" "video" "vboxusers" "scanner" ];
extraGroups = [ "networkmanager" "root" "docker""wheel" "lp" "audio" "video" "vboxusers" "scanner" ];
packages = with pkgs; [ ];
};
};
@ -6424,8 +6424,10 @@ Integrates 1password mostly. There are more options at [[#h:f0b2ea93-94c8-48d8-8
enable = true;
polkitPolicyOwners = [ "swarsel" ];
};
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
python39
docker
];
@ -8554,6 +8556,7 @@ The rest of the settings is at [[#h:bbf2ecb6-c8ff-4462-b5d5-d45b28604ddf][work]]
google-chrome
shellcheck
dig
docker
];
programs.ssh = {

View file

@ -6,7 +6,7 @@
isNormalUser = true;
description = "Leon S";
hashedPasswordFile = lib.mkIf (!config.swarselsystems.initialSetup) config.sops.secrets.swarseluser.path;
extraGroups = [ "networkmanager" "wheel" "lp" "audio" "video" "vboxusers" "scanner" ];
extraGroups = [ "networkmanager" "root" "docker" "wheel" "lp" "audio" "video" "vboxusers" "scanner" ];
packages = with pkgs; [ ];
};
};

View file

@ -6,6 +6,7 @@
google-chrome
shellcheck
dig
docker
];
programs.ssh = {

View file

@ -6,8 +6,10 @@
enable = true;
polkitPolicyOwners = [ "swarsel" ];
};
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
python39
docker
];