mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:19:41 +00:00
23 lines
327 B
Nix
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;
|
|
};
|
|
};
|
|
}
|