Split user configuration

This commit is contained in:
Marko Korhonen 2024-09-16 12:35:14 +03:00
parent eae3e9544c
commit b227b7cb19
6 changed files with 25 additions and 23 deletions

View file

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