9 lines
No EOL
183 B
Nix
9 lines
No EOL
183 B
Nix
{ pkgs, ... }:
|
|
{
|
|
users.users.willifan = {
|
|
isNormalUser = true;
|
|
description = "willifan";
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
packages = with pkgs; [];
|
|
};
|
|
} |