2020-05-09 01:17:35 +02:00
|
|
|
|
# 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")
|
|
|
|
|
];
|
|
|
|
|
|
2020-12-01 16:09:12 +01:00
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" "rtsx_pci_sdmmc" ];
|
2020-05-09 01:17:35 +02:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
|
|
|
|
{ device = "syscea/stateful/root";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/nix" =
|
|
|
|
|
{ device = "syscea/ephemeral/nix";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
2020-12-01 16:09:12 +01:00
|
|
|
|
fileSystems."/sdcard" =
|
|
|
|
|
{ device = "systemd-1";
|
|
|
|
|
fsType = "autofs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/usb" =
|
|
|
|
|
{ device = "systemd-1";
|
|
|
|
|
fsType = "autofs";
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-17 01:28:48 +01:00
|
|
|
|
fileSystems."/home" =
|
|
|
|
|
{ device = "syscea/stateful/home";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
2020-05-09 01:17:35 +02:00
|
|
|
|
fileSystems."/tmp" =
|
|
|
|
|
{ device = "syscea/ephemeral/tmp";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-17 01:28:48 +01:00
|
|
|
|
fileSystems."/home/coolneng/Downloads" =
|
|
|
|
|
{ device = "syscea/stateful/home/downloads";
|
2020-05-09 01:17:35 +02:00
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
|
|
|
|
{ device = "/dev/disk/by-uuid/4AED-6F54";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices =
|
2021-02-17 01:28:48 +01:00
|
|
|
|
[ { device = "/dev/disk/by-uuid/3403dce5-dfd2-42bc-9b38-58995c3fb93a"; }
|
2020-05-09 01:17:35 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|
|
|
|
}
|