64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{config, ...}: let
|
|
inherit (config.vars) mainUser hostName;
|
|
in {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
../../modules/ags
|
|
../../modules/audio.nix
|
|
../../modules/hyprland
|
|
../../modules/kmscon.nix
|
|
../../modules/printer.nix
|
|
../../modules/proton-bridge.nix
|
|
../../modules/razer.nix
|
|
../../modules/sshd.nix
|
|
../../modules/tailscale.nix
|
|
|
|
./modules/gpu-replay.nix
|
|
./modules/nix-gaming.nix
|
|
./modules/nvidia.nix
|
|
];
|
|
|
|
vars = {
|
|
mainUser = "matt";
|
|
hostName = "binto";
|
|
promptMainColor = "purple";
|
|
mainMonitor = "desc:GIGA-BYTE TECHNOLOGY CO. LTD. G27QC 0x00000B1D";
|
|
greetdDupe = false;
|
|
fontSize = 12.5;
|
|
};
|
|
|
|
users.users.${mainUser} = {
|
|
isNormalUser = true;
|
|
extraGroups = [
|
|
"wheel"
|
|
"input"
|
|
"uinput"
|
|
"adm"
|
|
"video"
|
|
"libvirtd"
|
|
];
|
|
};
|
|
home-manager.users.${mainUser} = {
|
|
imports = [
|
|
../../home/firefox
|
|
|
|
./home/packages.nix
|
|
];
|
|
|
|
# No touchy
|
|
home.stateVersion = "23.11";
|
|
};
|
|
|
|
networking = {
|
|
inherit hostName;
|
|
networkmanager.enable = true;
|
|
firewall.enable = false;
|
|
};
|
|
|
|
# Set your time zone.
|
|
time.timeZone = "America/Montreal";
|
|
|
|
# No touchy
|
|
system.stateVersion = "23.11";
|
|
}
|