[moderatio] mv user packages into own cfg

This commit is contained in:
2023-05-04 12:43:16 +02:00
parent 47441c6999
commit bf107a1e2b
2 changed files with 7 additions and 5 deletions

View File

@@ -27,6 +27,13 @@
../modules/sshd.nix
];
users.users.malobeo = {
packages = with pkgs; [
firefox
thunderbird
];
};
networking.hostName = "moderatio"; # Define your hostname.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.

View File

@@ -7,11 +7,6 @@ in
users.users.malobeo = {
isNormalUser = true;
extraGroups = [ "wheel" ];
packages = with pkgs; [
firefox
thunderbird
];
openssh.authorizedKeys.keys = sshKeys.admins;
initialPassword = "test";