Remove Home manager

This commit is contained in:
Johannes Jöns 2023-02-24 18:49:26 +01:00
parent 325d2da092
commit bf8db79cc5

View file

@ -10,21 +10,16 @@ in
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
custom.user.jopejoe1.home.enable = true; #custom.user.jopejoe1.home.enable = true;
users.users.jopejoe1 = { users.users.jopejoe1 = {
isNormalUser = true; isNormalUser = true;
description = "jopejoe1 🚫"; description = "jopejoe1";
initialPassword = "password"; #initialPassword = "password"; 🚫
openssh.authorizedKeys.keys = []; #openssh.authorizedKeys.keys = [];
extraGroups = [ "wheel"] extraGroups = [ "wheel"]
++ lib.optionals config.custom.hardware.printing.enable [ "scanner" "lp"] ++ lib.optionals config.custom.hardware.printing.enable [ "scanner" "lp"]
++ lib.optional config.networking.networkmanager.enable "networkmanger"; ++ lib.optional config.networking.networkmanager.enable "networkmanger";
packages = with pkgs; [ packages = with pkgs; [ ];
kate
carla
xdg-ninja
ark
];
}; };
}; };
} }