mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-03-19 15:50:30 +01:00
22 lines
377 B
Nix
22 lines
377 B
Nix
{ 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;
|
|
}
|