Move common configuration to a separate file, add user for som
This commit is contained in:
parent
f39e1965ba
commit
97d0e28069
3 changed files with 87 additions and 76 deletions
17
users.nix
Normal file
17
users.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users = {
|
||||
functionalhacker = {
|
||||
isNormalUser = true;
|
||||
description = "Marko";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
};
|
||||
|
||||
som = {
|
||||
isNormalUser = true;
|
||||
description = "Som";
|
||||
extraGroups = [ "networkmanager" ];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue