Move common configuration to a separate file, add user for som

This commit is contained in:
Marko Korhonen 2024-09-15 22:48:44 +03:00
parent f39e1965ba
commit 97d0e28069
3 changed files with 87 additions and 76 deletions

17
users.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
users.users = {
functionalhacker = {
isNormalUser = true;
description = "Marko";
extraGroups = [ "networkmanager" "wheel" ];
};
som = {
isNormalUser = true;
description = "Som";
extraGroups = [ "networkmanager" ];
};
};
}