mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ config, lib, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
|
|
boot.initrd.availableKernelModules = [ "ehci_pci" "ata_piix" "usb_storage" "usbhid" "sd_mod" "sr_mod" ];
|
|
boot.initrd.kernelModules = [ ];
|
|
boot.initrd.systemd.enable = true;
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
boot.extraModulePackages = [ ];
|
|
|
|
fileSystems."/" = {
|
|
device = "tmpfs";
|
|
fsType = "tmpfs";
|
|
options = [ "mode=755" ];
|
|
};
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/sda2";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=boot" "noatime" ];
|
|
};
|
|
|
|
fileSystems."/nix" = {
|
|
device = "/dev/sda2";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=nix" "compress=zstd" "noatime" ];
|
|
};
|
|
|
|
fileSystems."/var/lib" = {
|
|
device = "/dev/sda2";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=lib" "compress=zstd" "noatime" ];
|
|
};
|
|
|
|
fileSystems."/var/log" = {
|
|
device = "/dev/sda2";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=log" "compress=zstd" "noatime" ];
|
|
};
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
}
|