38 lines
		
	
	
	
		
			907 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			907 B
		
	
	
	
		
			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 + "/profiles/qemu-guest.nix")
 | ||
|     ];
 | ||
| 
 | ||
|   boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_scsi" ];
 | ||
|   boot.initrd.kernelModules = [ ];
 | ||
|   boot.kernelModules = [ ];
 | ||
|   boot.extraModulePackages = [ ];
 | ||
| 
 | ||
|   fileSystems."/" =
 | ||
|     { device = "rpool_kalessin/root";
 | ||
|       fsType = "zfs";
 | ||
|     };
 | ||
| 
 | ||
|   fileSystems."/nix" =
 | ||
|     { device = "rpool_kalessin/nix";
 | ||
|       fsType = "zfs";
 | ||
|     };
 | ||
| 
 | ||
|   fileSystems."/var" =
 | ||
|     { device = "rpool_kalessin/var";
 | ||
|       fsType = "zfs";
 | ||
|     };
 | ||
| 
 | ||
|   fileSystems."/boot" =
 | ||
|     { device = "/dev/disk/by-uuid/2ADE-A033";
 | ||
|       fsType = "vfat";
 | ||
|       options = [ "fmask=0077" "dmask=0077" ];
 | ||
|     };
 | ||
| 
 | ||
|   swapDevices = [ ];
 | ||
| }
 |