nixos-configs/hosts/wim/configuration.nix

56 lines
1.1 KiB
Nix
Raw Normal View History

{ ... }: {
2023-09-29 23:46:34 -04:00
imports = [
./hardware-configuration.nix
../../modules/audio.nix
../../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/sddm-wayland.nix
./modules/desktop.nix
2023-10-15 22:52:15 -04:00
./modules/security.nix
2023-09-29 23:46:34 -04:00
];
users.users.matt = {
isNormalUser = true;
extraGroups = [ "wheel" "input" "uinput" "adm" "mlocate" "video" "libvirtd" ];
};
# TODO: use hm for tmux
home-manager.users = {
matt = {
imports = [
./home/theme.nix
./home/hyprland.nix
./home/packages.nix
../../modules/alacritty.nix
../../modules/dconf.nix
../../modules/firefox
../../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";
}