2024-07-29 23:09:42 -05:00
|
|
|
|
{
|
2024-09-07 00:52:43 -05:00
|
|
|
|
pkgs,
|
|
|
|
|
userName,
|
2024-07-29 23:09:42 -05:00
|
|
|
|
hostname,
|
|
|
|
|
...
|
2024-09-07 21:22:12 -05:00
|
|
|
|
} @ args: {
|
|
|
|
|
# Set up networking configuration
|
2024-07-29 23:09:42 -05:00
|
|
|
|
networking.hostName = hostname;
|
|
|
|
|
networking.computerName = hostname;
|
2024-09-07 21:22:12 -05:00
|
|
|
|
networking.firewall.enable = true; # VERY important, do not touch
|
|
|
|
|
# networking.firewall.allowedTCPPorts = [];
|
|
|
|
|
# networking.firewall.allowedUDPPorts = [];
|
|
|
|
|
networking.networkmanager.enable = pkgs.stdenv.isLinux; # Linux tool for managing network connections
|
2024-07-29 23:09:42 -05:00
|
|
|
|
system.defaults.smb.NetBIOSName = hostname;
|
|
|
|
|
|
2024-09-07 21:22:12 -05:00
|
|
|
|
# Set up user accounts
|
|
|
|
|
# Don't forget to set a password with ‘passwd’!
|
2024-09-07 00:52:43 -05:00
|
|
|
|
users.users."${userName}" = {
|
|
|
|
|
home =
|
|
|
|
|
if pkgs.stdenv.isDarwin
|
|
|
|
|
then "/Users/${userName}"
|
|
|
|
|
else "/home/${userName}";
|
|
|
|
|
description = userName;
|
2024-09-07 21:22:12 -05:00
|
|
|
|
extraGroups =
|
|
|
|
|
if pkgs.stdenv.isLinux
|
|
|
|
|
then ["wheel" "video"]
|
|
|
|
|
else [];
|
2024-07-29 23:09:42 -05:00
|
|
|
|
};
|
|
|
|
|
|
2024-09-07 00:52:43 -05:00
|
|
|
|
nix.settings.trusted-users = [userName];
|
2024-07-29 23:09:42 -05:00
|
|
|
|
}
|