1
0

iso-configuration.nix 524 B

12345678910111213141516171819202122
  1. { config, pkgs, lib, ... }:
  2. {
  3. imports = [
  4. #../../nixos/hardware/gpu/nvidia.nix
  5. ../../nixos/hardware/wifi/bcm4360.nix
  6. ];
  7. nixpkgs.config.allowUnfree = true;
  8. networking.hostName = "iso";
  9. networking.networkmanager.enable = true;
  10. networking.firewall.checkReversePath = false;
  11. hardware.graphics.enable = true;
  12. nix.settings.experimental-features = [ "nix-command" "flakes" ];
  13. boot.loader.systemd-boot.enable = true;
  14. boot.loader.efi.canTouchEfiVariables = true;
  15. system.stateVersion = "25.11";
  16. }