diff options
Diffstat (limited to 'ullr')
| -rw-r--r-- | ullr/hw.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ullr/hw.nix b/ullr/hw.nix new file mode 100644 index 00000000..a1f8edce --- /dev/null +++ b/ullr/hw.nix | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | { config, lib, pkgs, ... }: | ||
| 2 | |||
| 3 | { | ||
| 4 | imports = | ||
| 5 | [ <nixpkgs/nixos/modules/profiles/qemu-guest.nix> | ||
| 6 | ]; | ||
| 7 | |||
| 8 | boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sd_mod" "sr_mod" ]; | ||
| 9 | boot.initrd.kernelModules = [ ]; | ||
| 10 | boot.kernelModules = [ ]; | ||
| 11 | boot.extraModulePackages = [ ]; | ||
| 12 | |||
| 13 | fileSystems."/" = | ||
| 14 | { device = "/dev/sda1"; | ||
| 15 | fsType = "btrfs"; | ||
| 16 | }; | ||
| 17 | |||
| 18 | swapDevices = [ ]; | ||
| 19 | } | ||
