62 lines
1.9 KiB
Nix
62 lines
1.9 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" "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/3bbde916-e12a-46a7-9eea-4f5e2aef7883";
|
|||
|
keyFile = "/dev/disk/by-id/usb-SanDisk_Cruzer_Blade_04017028021722045451-0:0-part1";
|
|||
|
bypassWorkqueues = true;
|
|||
|
fallbackToPassword = true;
|
|||
|
};
|
|||
|
};
|
|||
|
|
|||
|
fileSystems."/" =
|
|||
|
{
|
|||
|
device = "zroot/root";
|
|||
|
fsType = "zfs";
|
|||
|
};
|
|||
|
|
|||
|
fileSystems."/boot" =
|
|||
|
{
|
|||
|
device = "/dev/disk/by-uuid/5552-1B21";
|
|||
|
fsType = "vfat";
|
|||
|
};
|
|||
|
|
|||
|
fileSystems."/var/lib/rancher/k3s/storage" =
|
|||
|
{
|
|||
|
device = "zroot/kubernetes-localstorage";
|
|||
|
fsType = "zfs";
|
|||
|
};
|
|||
|
|
|||
|
swapDevices =
|
|||
|
[{ device = "/dev/disk/by-uuid/0545db4a-0494-44d7-927a-4c78351c4303"; }];
|
|||
|
|
|||
|
# 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 = false;
|
|||
|
networking.interfaces.eth0.useDHCP = lib.mkDefault true;
|
|||
|
# networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
|
|||
|
networking.hostId = "71f2d82a";
|
|||
|
|
|||
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
|||
|
}
|