From bd8b5f13271607bd2c82ba8df0210b5bd2f00ad3 Mon Sep 17 00:00:00 2001 From: Nathan Date: Sun, 18 Jan 2026 13:40:15 -0600 Subject: [PATCH] docker perms --- system/users/nathan/system/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/users/nathan/system/default.nix b/system/users/nathan/system/default.nix index 5a3935d..deed149 100644 --- a/system/users/nathan/system/default.nix +++ b/system/users/nathan/system/default.nix @@ -10,7 +10,7 @@ name = lib.mkDefault "nathan"; isNormalUser = lib.mkDefault true; #hashedPasswordFile = lib.mkIf (cfg.hashedPasswordFile != null) cfg.hashedPasswordFile; - extraGroups = [ "networkmanager" ]; + extraGroups = [ "networkmanager" "docker" ]; openssh.authorizedKeys.keys = with config.sysconfig.users.nathan; lib.mkIf config.sysconfig.services.openssh.enable (ssh.keys ++ (map (z: config.sysconfig.sshHostKeys.${z}) ssh.hosts)); packages = lib.mkIf (config.sysconfig.users.nathan.home-manager.enable && config.sysconfig.users.nathan.home-manager.standalone) [ pkgs.home-manager ];