nixos-configs/hosts/wim/default.nix

69 lines
1.2 KiB
Nix
Raw Normal View History

{ ... }: {
2023-09-29 23:46:34 -04:00
imports = [
./hardware-configuration.nix
../../modules/audio.nix
2023-10-19 17:05:13 -04:00
../../modules/greetd
../../modules/kmscon.nix
2023-10-15 17:40:57 -04:00
../../modules/plymouth.nix
../../modules/printer.nix
2023-10-15 17:44:47 -04:00
../../modules/proton-bridge.nix
./modules/desktop.nix
2023-10-15 22:52:15 -04:00
./modules/security.nix
2023-09-29 23:46:34 -04:00
];
services.hostvars = {
username = "matt";
configDir = "/home/matt/.nix/hosts/wim/config";
fontSize = 12.5;
};
users.users.matt = {
isNormalUser = true;
extraGroups = [
"wheel"
"input"
"uinput"
"adm"
"mlocate"
"video"
"libvirtd"
];
};
home-manager.users = {
matt = {
imports = [
./home/hyprland.nix
./home/packages.nix
../../modules/alacritty.nix
../../modules/dconf.nix
../../modules/firefox
2023-10-20 00:01:19 -04:00
../../modules/theme.nix
../../modules/wofi
./modules/dotfiles.nix
];
# No touchy
home.stateVersion = "23.05";
};
};
networking = {
hostName = "wim";
networkmanager = {
enable = true;
wifi.backend = "wpa_supplicant";
};
2023-10-15 22:52:15 -04:00
firewall.enable = false;
};
# Set your time zone.
time.timeZone = "America/Montreal";
# No touchy
system.stateVersion = "23.05";
}