9 lines
No EOL
186 B
Nix
9 lines
No EOL
186 B
Nix
{ pkgs, ... }: {
|
|
users.users.hd = {
|
|
description = "Henri";
|
|
isNormalUser = true;
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
shell = pkgs.fish;
|
|
packages = [];
|
|
};
|
|
} |