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" ];
};
}

View file

@ -0,0 +1,15 @@
{ lib, pkgs, ... }:
{
home = {
username = "functionalhacker";
homeDirectory = "/home/functionalhacker";
stateVersion = "24.05";
packages = with pkgs; [
neofetch
pass
zsh
];
};
}

View file

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