mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 16:16:34 +01:00
Remove Home manager
This commit is contained in:
parent
325d2da092
commit
bf8db79cc5
1 changed files with 5 additions and 10 deletions
|
@ -10,21 +10,16 @@ in
|
|||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
custom.user.jopejoe1.home.enable = true;
|
||||
#custom.user.jopejoe1.home.enable = true;
|
||||
users.users.jopejoe1 = {
|
||||
isNormalUser = true;
|
||||
description = "jopejoe1 🚫";
|
||||
initialPassword = "password";
|
||||
openssh.authorizedKeys.keys = [];
|
||||
description = "jopejoe1";
|
||||
#initialPassword = "password"; 🚫
|
||||
#openssh.authorizedKeys.keys = [];
|
||||
extraGroups = [ "wheel"]
|
||||
++ lib.optionals config.custom.hardware.printing.enable [ "scanner" "lp"]
|
||||
++ lib.optional config.networking.networkmanager.enable "networkmanger";
|
||||
packages = with pkgs; [
|
||||
kate
|
||||
carla
|
||||
xdg-ninja
|
||||
ark
|
||||
];
|
||||
packages = with pkgs; [ ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue