blob: c4e7cf37d8d6f2c2df09afa3ab4c639296a1e38e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{pkgs, lib, config,...}: {
imports = [./user-common.nix];
programs.zsh.enable = true;
users.users.wilkuu = {
shell = pkgs.zsh;
isNormalUser = true;
initialPassword = "PleazeChangeThis123";
extraGroups = [ "wheel" "networkmanager" "input" "docker" "adbusers" "libvirtd" ]; # Enable ‘sudo’ for the user.
packages = with pkgs; [
home-manager
];
};
home-manager.users.wilkuu.imports = [ ../home/wilkuu.nix ];
}
|