66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| # Do not modify this file!  It was generated by ‘nixos-generate-config’
 | ||
| # and may be overwritten by future invocations.  Please make changes
 | ||
| # to /etc/nixos/configuration.nix instead.
 | ||
| {
 | ||
|   config,
 | ||
|   lib,
 | ||
|   pkgs,
 | ||
|   modulesPath,
 | ||
|   ...
 | ||
| }:
 | ||
| 
 | ||
| {
 | ||
|   imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
 | ||
| 
 | ||
|   boot = {
 | ||
|     initrd.availableKernelModules = [
 | ||
|       "xhci_pci"
 | ||
|       "mpt3sas"
 | ||
|       "ahci"
 | ||
|       "nvme"
 | ||
|       "usb_storage"
 | ||
|       "usbhid"
 | ||
|       "sd_mod"
 | ||
|     ];
 | ||
|     initrd.kernelModules = [ "dm-snapshot" ];
 | ||
|     kernelModules = [ "kvm-amd" ];
 | ||
|     extraModulePackages = [ ];
 | ||
|   };
 | ||
| 
 | ||
|   fileSystems = {
 | ||
|     "/" = {
 | ||
|       device = "/dev/disk/by-uuid/8bfaa32b-09dd-45c8-831e-05e80be82f9e";
 | ||
|       fsType = "ext4";
 | ||
|     };
 | ||
| 
 | ||
|     "/home" = {
 | ||
|       device = "/dev/disk/by-uuid/4f1e4cc5-b0e1-402c-895c-b28368905ccc";
 | ||
|       fsType = "ext4";
 | ||
|     };
 | ||
| 
 | ||
|     "/nix" = {
 | ||
|       device = "ZFS-primary/nix";
 | ||
|       fsType = "zfs";
 | ||
|     };
 | ||
| 
 | ||
|     "/boot" = {
 | ||
|       device = "/dev/disk/by-uuid/F774-5A2D";
 | ||
|       fsType = "vfat";
 | ||
|     };
 | ||
| 
 | ||
|   };
 | ||
|   swapDevices = [ { device = "/dev/disk/by-uuid/96f3107b-db94-47b3-963e-6a2cb8b4e66a"; } ];
 | ||
| 
 | ||
|   # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
 | ||
|   # (the default) this is the recommended approach. When using systemd-networkd it's
 | ||
|   # still possible to use this option, but it's recommended to use it in conjunction
 | ||
|   # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
 | ||
|   networking.useDHCP = lib.mkDefault true;
 | ||
|   # networking.interfaces.eno1.useDHCP = lib.mkDefault true;
 | ||
|   # networking.interfaces.eno2.useDHCP = lib.mkDefault true;
 | ||
|   # networking.interfaces.enp72s0f3u1u2c2.useDHCP = lib.mkDefault true;
 | ||
| 
 | ||
|   nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
 | ||
|   hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
 | ||
| }
 |