From e909d1e5bc80cf400410f3d1d8032fae9fb81ec3 Mon Sep 17 00:00:00 2001 From: uku Date: Wed, 9 Oct 2024 15:22:03 +0200 Subject: [PATCH] feat(mottarone): add docker --- configs/common.nix | 2 +- systems/mottarone/default.nix | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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; }