| 123456789101112131415161718192021222324252627282930 |
- { config, pkgs, lib, ... }:
- let
- hosts = import ../../config/hosts.nix;
- in
- {
- imports = [
- ./hardware-configuration.nix
- ../../nixos/hardware/gpu/nvidia.nix
- ../../nixos/hardware/networking/bcm4360.nix
- ../../nixos/hardware/sound
- ../../nixos/hardware/bluetooth
- ../../nixos/flavors/desktop/sway
- ../../nixos/flavors/desktop/sway/greeter-default.nix
- ../../nixos/features/system/basic.nix
- ../../nixos/features/system/users.nix
- ../../nixos/features/system/gaming.nix
- ];
- nixpkgs.config.allowUnfree = true;
- nix.settings.experimental-features = [ "nix-command" "flakes" ];
- networking.hostName = hosts.nixstation.hostname;
- boot.loader.systemd-boot.enable = true;
- boot.loader.efi.canTouchEfiVariables = true;
- system.stateVersion = "25.11";
- }
|