zsh: condition on user qenya being present

This commit is contained in:
Katherina Walshe-Grey 2024-08-29 19:59:13 +01:00
parent 12a4c20625
commit 444c69edd3
3 changed files with 2 additions and 6 deletions

View file

@ -8,6 +8,5 @@
./nixpkgs.nix
./openssh.nix
./security.nix
./zsh.nix
];
}

View file

@ -9,4 +9,6 @@ in {
openssh.authorizedKeys.keys = keys.users.qenya;
uid = 1001;
};
programs.zsh.enable = true;
}

View file

@ -1,5 +0,0 @@
{ config, lib, pkgs,... }:
{
programs.zsh.enable = true;
}