41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ config, ... }: {
|
|
imports = [
|
|
../../nixos/nvidia.nix # CHANGEME: Remove this line if you don't have an Nvidia GPU
|
|
../../nixos/prime.nix # CHANGEME: Remove this line if you don't have an Nvidia GPU
|
|
|
|
../../nixos/audio.nix
|
|
../../nixos/auto-upgrade.nix
|
|
../../nixos/bluetooth.nix
|
|
../../nixos/fonts.nix
|
|
../../nixos/home-manager.nix
|
|
../../nixos/network-manager.nix
|
|
../../nixos/nix.nix
|
|
../../nixos/systemd-boot.nix
|
|
../../nixos/timezone.nix
|
|
../../nixos/tuigreet.nix
|
|
../../nixos/users.nix
|
|
../../nixos/utils.nix
|
|
../../nixos/xdg-portal.nix
|
|
../../nixos/variables-config.nix
|
|
|
|
../../themes/nixy.nix
|
|
|
|
./hardware-configuration.nix
|
|
./variables.nix
|
|
];
|
|
|
|
home-manager.users."${config.var.username}" = import ./home.nix;
|
|
|
|
# For KDEConnect (Remove this if not needed)
|
|
networking.firewall = rec {
|
|
allowedTCPPortRanges = [{
|
|
from = 1714;
|
|
to = 1764;
|
|
}];
|
|
allowedUDPPortRanges = allowedTCPPortRanges;
|
|
};
|
|
|
|
# Don't touch this
|
|
system.stateVersion = "24.05";
|
|
}
|