move user config
This commit is contained in:
parent
7f2def19e8
commit
44ac3ac799
@ -22,19 +22,6 @@
|
||||
};
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.max = {
|
||||
isNormalUser = true;
|
||||
description = "Max Känner";
|
||||
extraGroups = ["networkmanager" "wheel" "libvirtd" "dialout"];
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
extraSpecialArgs = {inherit inputs;};
|
||||
users = {
|
||||
"max" = import ./home.nix;
|
||||
};
|
||||
};
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
|
@ -2,6 +2,8 @@
|
||||
lib,
|
||||
config,
|
||||
system,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: let
|
||||
cfg = config.myConfig;
|
||||
@ -21,6 +23,7 @@ in {
|
||||
};
|
||||
|
||||
config.myConfig = lib.mkIf cfg.enable {
|
||||
myConfig = {
|
||||
bootloader.enable = true;
|
||||
locale.enable = true;
|
||||
rebuild.enable = true;
|
||||
@ -42,4 +45,17 @@ in {
|
||||
touch.enable = lib.mkIf cfg.laptop true;
|
||||
bluetooth.enable = lib.mkIf cfg.laptop true;
|
||||
};
|
||||
|
||||
users.users.${cfg.user} = {
|
||||
isNormalUser = true;
|
||||
description = "Max Känner";
|
||||
extraGroups = ["wheel" "dialout"];
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
extraSpecialArgs = {inherit inputs;};
|
||||
users.${cfg.user} = import ./home.nix;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
@ -20,5 +20,7 @@ in {
|
||||
hostName = cfg.hostName;
|
||||
firewall.enable = false;
|
||||
};
|
||||
|
||||
users.users.${cfg.user}.extraGroups = ["networkmanager"];
|
||||
};
|
||||
}
|
||||
|
@ -35,5 +35,6 @@ in {
|
||||
};
|
||||
};
|
||||
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
||||
users.users.${cfg.user}.extraGroups = ["libvirtd"];
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user