This commit is contained in:
Jonas Juselius
2021-06-12 11:46:53 +02:00
parent 20909aa8da
commit 47394cb553
5 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# 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 = [ ];
boot.initrd.availableKernelModules = [ "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/02bcc865-6f9f-4c8f-bd82-74989c6854cf";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/9EB2-69DB";
fsType = "vfat";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/1e002a08-8014-4265-8557-1b64c9470d32"; }
];
virtualisation.hypervGuest.enable = true;
}