123456789101112131415161718192021222324252627 |
- # 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, ... }:
- {
- imports =
- [ <nixpkgs/nixos/modules/installer/scan/not-detected.nix>
- ];
- boot.initrd.availableKernelModules = [ "uhci_hcd" "ehci_pci" "ahci" "usb_storage" "sd_mod" ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-intel" ];
- boot.extraModulePackages = [ ];
- fileSystems."/" =
- { device = "/dev/disk/by-uuid/39b4cd24-91eb-4dbb-8509-c377c3750cc0";
- fsType = "ext4";
- };
- swapDevices =
- [ { device = "/dev/disk/by-uuid/e630f178-40aa-477c-9497-d0874d7c8ffe"; }
- ];
- nix.maxJobs = lib.mkDefault 2;
- }
|