11 lines
178 B
Nix
11 lines
178 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.nils = {
|
|
isNormalUser = true;
|
|
description = "nils";
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
shell = pkgs.fish;
|
|
};
|
|
}
|