# 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, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "hydra/nixos"; fsType = "zfs"; options = [ "zfsutil" ]; }; fileSystems."/nix" = { device = "hydra/nixos/nix"; fsType = "zfs"; options = [ "zfsutil" ]; }; fileSystems."/nix/store" = { device = "hydra/nixos/nix/store"; fsType = "zfs"; options = [ "zfsutil" ]; }; fileSystems."/nix/var" = { device = "hydra/nixos/nix/var"; fsType = "zfs"; options = [ "zfsutil" ]; }; fileSystems."/etc" = { device = "hydra/data/etc"; fsType = "zfs"; options = [ "zfsutil" ]; }; fileSystems."/var" = { device = "hydra/data/var"; fsType = "zfs"; options = [ "zfsutil" ]; }; fileSystems."/var/backup" = { device = "hydra/data/var/backup"; fsType = "zfs"; options = [ "zfsutil" ]; }; fileSystems."/var/lib" = { device = "hydra/data/var/lib"; fsType = "zfs"; options = [ "zfsutil" ]; }; fileSystems."/var/log" = { device = "hydra/data/var/log"; fsType = "zfs"; options = [ "zfsutil" ]; }; fileSystems."/home" = { device = "hydra/data/home"; fsType = "zfs"; options = [ "zfsutil" ]; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/93C6-E4BA"; fsType = "vfat"; }; swapDevices = [ { device = "/dev/disk/by-uuid/61ba7849-7815-473e-85f6-d7274eda6ce4"; } ]; # 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.bond0.useDHCP = lib.mkDefault true; # networking.interfaces.bonding_masters.useDHCP = lib.mkDefault true; # networking.interfaces.enp2s0f0.useDHCP = lib.mkDefault true; # networking.interfaces.enp2s0f1.useDHCP = lib.mkDefault true; # networking.interfaces.enp6s0f0.useDHCP = lib.mkDefault true; # networking.interfaces.enp6s0f1.useDHCP = lib.mkDefault true; # networking.interfaces.enp7s0f0.useDHCP = lib.mkDefault true; # networking.interfaces.enp7s0f1.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }