Move more things to the common host configuration

This commit is contained in:
Oliver Davies 2024-12-30 17:43:49 +00:00
parent c5afed5767
commit 815ec0f429
9 changed files with 147 additions and 528 deletions

View file

@ -0,0 +1,20 @@
{ username, ... }:
{
users = {
users.${username} = {
isNormalUser = true;
description = "Oliver Davies";
extraGroups = [
"docker"
"networkmanager"
"wheel"
];
packages = [ ];
};
defaultUserShell = "/etc/profiles/per-user/${username}/bin/zsh";
};
}