all repos — nixfiles @ c7cfce9679d96bd9e378e741a0ac590d6a059a82

System and user configuration, managed by nix and home-manager

linde: allow normal user to write laminar config

Alan Pearce
commit

c7cfce9679d96bd9e378e741a0ac590d6a059a82

parent

eaca59631b9a14b1f2ac3a61e5778c57a4a7ea48

1 file changed, 4 insertions(+), 1 deletion(-)

jump to
M system/linde.nixsystem/linde.nix
@@ -310,7 +310,7 @@ programs.zsh.enable = true;
users.users.root.shell = "${pkgs.fish}/bin/fish"; users.users.alan = { shell = "${pkgs.fish}/bin/fish"; - extraGroups = [ "wheel" "caddy" "docker" ]; + extraGroups = [ "wheel" "caddy" "docker" "laminar" ]; isNormalUser = true; home = "/home/alan"; createHome = true;
@@ -983,5 +983,8 @@ settings = {
bindHTTP = "[::1]:8002"; keepRundirs = 1; }; + }; + users.users.laminar = { + homeMode = "770"; }; }