44 lines
690 B
Nix
44 lines
690 B
Nix
{...}: {
|
|
imports = [
|
|
#./hardware-configuration.nix
|
|
|
|
../../modules/tailscale.nix
|
|
|
|
./modules/headscale.nix
|
|
];
|
|
|
|
services.device-vars = {
|
|
username = "matt";
|
|
};
|
|
|
|
users.users.matt = {
|
|
isNormalUser = true;
|
|
extraGroups = [
|
|
"wheel"
|
|
"adm"
|
|
];
|
|
};
|
|
home-manager.users = {
|
|
matt = {
|
|
imports = [];
|
|
|
|
# No touchy
|
|
home.stateVersion = "24.05";
|
|
};
|
|
};
|
|
|
|
networking = {
|
|
hostName = "oksys";
|
|
networkmanager = {
|
|
enable = true;
|
|
wifi.backend = "wpa_supplicant";
|
|
};
|
|
firewall.enable = false;
|
|
};
|
|
|
|
# Set your time zone.
|
|
time.timeZone = "America/Montreal";
|
|
|
|
# No touchy
|
|
system.stateVersion = "24.05";
|
|
}
|