nixos-configs/devices/oksys/default.nix

45 lines
690 B
Nix
Raw Normal View History

2023-11-28 21:41:52 -05:00
{...}: {
imports = [
2023-11-28 21:43:26 -05:00
#./hardware-configuration.nix
../../modules/tailscale.nix
./modules/headscale.nix
2023-11-28 21:41:52 -05:00
];
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";
}