mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-05-06 19:05:00 +02:00
33 lines
851 B
Nix
33 lines
851 B
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 = ["ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci"];
|
||
boot.initrd.kernelModules = ["dm-snapshot"];
|
||
boot.kernelModules = ["kvm-intel"];
|
||
boot.extraModulePackages = [];
|
||
boot.kernelParams = ["iomem=relaxed"];
|
||
|
||
fileSystems."/" = {
|
||
device = "/dev/disk/by-uuid/95baa216-c7f1-418d-be70-cd1d4102c837";
|
||
fsType = "btrfs";
|
||
};
|
||
|
||
fileSystems."/home" = {
|
||
device = "/dev/disk/by-uuid/50e43b17-10c8-4bbe-893a-c709172867db";
|
||
fsType = "btrfs";
|
||
};
|
||
|
||
swapDevices = [
|
||
];
|
||
}
|