{ config, lib, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "uas" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "/dev/disk/by-uuid/44c53e75-a00d-47bc-a99b-2544fe513e51"; fsType = "btrfs"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/8A71-E5EB"; fsType = "vfat"; }; # fileSystems."/var/lib/zoneminder/events" = { # device = "/dev/disk/by-uuid/7ca4d382-eed7-4b49-b7d8-4b5ca139dd9c"; # fsType = "btrfs"; # options = [ "subvol=@zoneminder" ]; # }; # fileSystems."/mnt/raid0/condiviso" = { # device = "/dev/disk/by-uuid/7ca4d382-eed7-4b49-b7d8-4b5ca139dd9c"; # fsType = "btrfs"; # options = [ "subvol=@condiviso" ]; # }; # fileSystems."/mnt/raid1/condiviso" = { # device = "/dev/disk/by-uuid/c84a38dc-9cc7-4762-b509-8fce1c1d95c8"; # fsType = "btrfs"; # options = [ "subvol=@condiviso" ]; # }; # fileSystems."/home/bertof/raid0" = { # device = "/dev/disk/by-uuid/7ca4d382-eed7-4b49-b7d8-4b5ca139dd9c"; # fsType = "btrfs"; # options = [ "subvol=@bertof" ]; # }; # fileSystems."/home/bertof/raid1" = { # device = "/dev/disk/by-uuid/c84a38dc-9cc7-4762-b509-8fce1c1d95c8"; # fsType = "btrfs"; # options = [ "subvol=@bertof" ]; # }; # fileSystems."/home/tiziano/raid0" = { # device = "/dev/disk/by-uuid/7ca4d382-eed7-4b49-b7d8-4b5ca139dd9c"; # fsType = "btrfs"; # options = [ "subvol=@tiziano" ]; # }; # fileSystems."/home/tiziano/raid1" = { # device = "/dev/disk/by-uuid/c84a38dc-9cc7-4762-b509-8fce1c1d95c8"; # fsType = "btrfs"; # options = [ "subvol=@tiziano" ]; # }; # fileSystems."/home/tiziano/Condiviso/raid1" = { # device = "/dev/disk/by-uuid/c84a38dc-9cc7-4762-b509-8fce1c1d95c8"; # fsType = "btrfs"; # options = [ "subvol=@condiviso" ]; # }; # fileSystems."/home/tiziano/Condiviso/raid0" = { # device = "/dev/disk/by-uuid/7ca4d382-eed7-4b49-b7d8-4b5ca139dd9c"; # fsType = "btrfs"; # options = [ "subvol=@condiviso" ]; # }; # fileSystems."/home/bertof/Condiviso/raid0" = { # device = "/dev/disk/by-uuid/7ca4d382-eed7-4b49-b7d8-4b5ca139dd9c"; # fsType = "btrfs"; # options = [ "subvol=@condiviso" ]; # }; # fileSystems."/home/bertof/Condiviso/raid1" = { # device = "/dev/disk/by-uuid/c84a38dc-9cc7-4762-b509-8fce1c1d95c8"; # fsType = "btrfs"; # options = [ "subvol=@condiviso" ]; # }; swapDevices = [ ]; # 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..useDHCP`. # networking.useDHCP = lib.mkDefault true; # networking.interfaces.docker0.useDHCP = lib.mkDefault true; # networking.interfaces.eno1.useDHCP = lib.mkDefault true; # networking.interfaces.wlp7s0.useDHCP = lib.mkDefault true; # networking.interfaces.ztmjfdwjkp.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }