All checks were successful
Check flake / build-amd64-linux (push) Successful in 2m53s
76 lines
1.4 KiB
Nix
76 lines
1.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
modulesPath,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
|
|
boot = {
|
|
initrd.availableKernelModules = [
|
|
"ehci_pci"
|
|
"ahci"
|
|
"usbhid"
|
|
"usb_storage"
|
|
"sd_mod"
|
|
"sr_mod"
|
|
"zfs"
|
|
];
|
|
initrd.kernelModules = [ ];
|
|
initrd.supportedFilesystems = [ "zfs" ];
|
|
kernelModules = [ "kvm-intel" ];
|
|
kernelParams = [ "elevator=none" ];
|
|
extraModulePackages = [ ];
|
|
supportedFilesystems = [ "zfs" ];
|
|
};
|
|
|
|
fileSystems."/" = {
|
|
device = "rpool/system/root";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
fileSystems."/home" = {
|
|
device = "rpool/user/home";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
fileSystems."/nix" = {
|
|
device = "rpool/local/nix";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
fileSystems."/tmp" = {
|
|
device = "rpool/local/tmp";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
fileSystems."/var/log" = {
|
|
device = "rpool/system/var/log";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
fileSystems."/var/tmp" = {
|
|
device = "rpool/system/var/tmp";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/sda1";
|
|
fsType = "ext2";
|
|
};
|
|
|
|
swapDevices = [ ];
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
# networking.interfaces.eno1.useDHCP = lib.mkDefault true;
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
}
|