# 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" "uas" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; boot.initrd.supportedFilesystems = [ "zfs" ]; boot.supportedFilesystems = [ "zfs" ]; boot.kernelPackages = lib.mkForce pkgs.linuxPackages_5_18; boot.initrd.luks.devices = { cryptroot = { device = "/dev/disk/by-uuid/bf333b74-875f-4187-922e-4b433fb53aa2"; keyFile = "/dev/disk/by-id/usb-SanDisk_Cruzer_Blade_03024516121421043657-0:0-part1"; bypassWorkqueues = true; fallbackToPassword = true; }; }; fileSystems."/" = { device = "zroot/root"; fsType = "zfs"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/6CB3-6DB8"; fsType = "vfat"; }; fileSystems."/var/lib/rancher/k3s/storage" = { device = "zroot/kubernetes-localstorage"; fsType = "zfs"; }; swapDevices = [{ device = "/dev/disk/by-uuid/7ef4a3f8-f4a6-42f5-a57d-21f502ed3dba"; }]; # 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 = false; networking.interfaces.eth0.useDHCP = lib.mkDefault true; # networking.interfaces.wlan0.useDHCP = lib.mkDefault true; networking.hostId = "71f2d82a"; powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand"; }