chore: move linux specific things to user-linux.nix

This commit is contained in:
ahwx 2026-02-27 00:52:11 +01:00
parent 60a693cc91
commit d3305f1e76
2 changed files with 50 additions and 21 deletions

View file

@ -0,0 +1,22 @@
{ username, ... }:
{
users.users.${username} = {
isNormalUser = true;
extraGroups = [
"networkmanager"
"wheel"
"docker"
"input"
"dialout"
"wheel"
];
initialPassword = "temporary-password";
};
home-manager = {
inherit username;
homeDirectory = "/home/${username}";
};
fonts.fontconfig.antialias = false;
}