# 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" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; kernelModules = [ ]; }; kernelModules = [ "kvm-intel" ]; extraModulePackages = [ ]; }; nix.readOnlyStore = false; fileSystems = { "/" = { device = "none"; fsType = "tmpfs"; }; "/boot" = { device = "/dev/disk/by-uuid/B283-B76E"; fsType = "vfat"; }; "/nix" = { device = "/dev/disk/by-uuid/c334d115-eda9-4470-8c28-b01c4628865b"; fsType = "btrfs"; options = [ "subvol=nix" "compress=zstd" "noatime" ]; }; "/etc" = { device = "/dev/disk/by-uuid/c334d115-eda9-4470-8c28-b01c4628865b"; fsType = "btrfs"; options = [ "subvol=etc" "compress=zstd" "noatime" ]; }; "/root" = { device = "/dev/disk/by-uuid/c334d115-eda9-4470-8c28-b01c4628865b"; fsType = "btrfs"; options = [ "subvol=root" "compress=zstd" "noatime" ]; }; "/home" = { device = "/dev/disk/by-uuid/c334d115-eda9-4470-8c28-b01c4628865b"; fsType = "btrfs"; options = [ "subvol=home" "compress=zstd" ]; }; "/var/log" = { device = "/dev/disk/by-uuid/c334d115-eda9-4470-8c28-b01c4628865b"; fsType = "btrfs"; options = [ "subvol=log" "compress=zstd" ]; neededForBoot = true; }; }; services.fstrim.enable = true; swapDevices = [ { device = "/dev/disk/by-uuid/d3a6d2bc-19dd-4260-a6d4-89c04264dbd8"; } ]; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; }