1
0

configuration.nix 705 B

1234567891011121314151617181920212223242526
  1. { config, pkgs, lib, ... }:
  2. {
  3. imports = [
  4. ./networking.nix
  5. ./hardware-configuration.nix
  6. ../../nixos/hardware/gpu/nvidia.nix
  7. ../../nixos/hardware/wifi/bcm4360.nix
  8. ../../nixos/hardware/sound
  9. ../../nixos/hardware/bluetooth
  10. ../../nixos/flavors/desktop/sway
  11. ../../nixos/flavors/desktop/sway/greeter-default.nix
  12. ../../nixos/features/system/basic.nix
  13. ../../nixos/features/system/users.nix
  14. ../../nixos/features/system/gaming.nix
  15. ];
  16. nixpkgs.config.allowUnfree = true;
  17. nix.settings.experimental-features = [ "nix-command" "flakes" ];
  18. boot.loader.systemd-boot.enable = true;
  19. boot.loader.efi.canTouchEfiVariables = true;
  20. system.stateVersion = "25.11";
  21. }