From 2b8b18dc22a5d07a517c1bf49ec82f96d92d81ea Mon Sep 17 00:00:00 2001 From: sajenim Date: Wed, 7 Jun 2023 23:28:18 +0800 Subject: [PATCH] add admin to podman group --- nixos/lavender/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/lavender/configuration.nix b/nixos/lavender/configuration.nix index 5cc8779..0d9ba5f 100644 --- a/nixos/lavender/configuration.nix +++ b/nixos/lavender/configuration.nix @@ -150,7 +150,7 @@ # Define a user account. Don't forget to set a password with ‘passwd’. users.users.admin = { isNormalUser = true; - extraGroups = [ "networkmanager" "wheel" ]; + extraGroups = [ "networkmanager" "wheel" "podman" ]; shell = pkgs.zsh; openssh.authorizedKeys.keyFiles = [ ../fuchsia/id_ed25519_sk.pub ]; };