nixdots/system/shared/system.nix
2024-07-27 01:07:07 +02:00

23 lines
327 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.myOptions.system;
in {
networking.hostName = cfg.hostname;
# Default shell for the user
programs.zsh.enable = true;
users = {
users.${cfg.username} = {
isNormalUser = true;
extraGroups = ["wheel"];
shell = pkgs.zsh;
};
};
}