mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 05:29:42 +00:00
18 lines
321 B
Nix
18 lines
321 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;
|
|
};
|
|
};
|
|
}
|