diff options
| author | Miguel <m.i@gmx.at> | 2021-11-07 02:06:32 +0100 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2021-11-07 02:06:32 +0100 |
| commit | 78306cc7562e8a8475dd839fdc175ddf15654df5 (patch) | |
| tree | eef029adca44a15f804e3c3bff45edc74e48f9f2 /nix/nixops/comet/hardware-configuration.nix | |
| parent | dc837e396eb92218b5bed025801e1accb11415c8 (diff) | |
adding new nix dir
Diffstat (limited to 'nix/nixops/comet/hardware-configuration.nix')
| -rw-r--r-- | nix/nixops/comet/hardware-configuration.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/nix/nixops/comet/hardware-configuration.nix b/nix/nixops/comet/hardware-configuration.nix new file mode 100644 index 0000000..7f5eb56 --- /dev/null +++ b/nix/nixops/comet/hardware-configuration.nix @@ -0,0 +1,24 @@ +# 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/profiles/qemu-guest.nix> + ]; + + boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sd_mod" "sr_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/3c4969ad-b9cb-4265-8e14-92145f8a133a"; + fsType = "ext4"; + }; + + swapDevices = [ ]; + + nix.maxJobs = lib.mkDefault 4; +} |
