diff --git a/configs/common.nix b/configs/common.nix index b6cf185..74f0ba0 100644 --- a/configs/common.nix +++ b/configs/common.nix @@ -197,7 +197,7 @@ in { "${username}" = { isNormalUser = true; shell = pkgs.fish; - extraGroups = ["networkmanager" "wheel" "video" "libvirtd" "input"]; + extraGroups = ["networkmanager" "wheel" "video" "libvirtd" "input" "docker"]; hashedPasswordFile = secrets.get "userPassword"; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN+7+KfdOrhcnHayxvOENUeMx8rE4XEIV/AxMHiaNUP8" diff --git a/systems/mottarone/default.nix b/systems/mottarone/default.nix index b0f175c..02d5faf 100644 --- a/systems/mottarone/default.nix +++ b/systems/mottarone/default.nix @@ -24,4 +24,6 @@ }; services.resolved.dnsovertls = lib.mkForce "false"; + + virtualisation.docker.enable = true; }