This commit is contained in:
Jonas Juselius
2020-10-29 17:39:32 +01:00
parent f8840fb20d
commit bf23f3dc4d
3 changed files with 126 additions and 0 deletions

34
clusters/fs2/fs2-0.nix Normal file
View File

@@ -0,0 +1,34 @@
# 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/92f12271-8191-4a81-9f9b-207484df78c3";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/2D29-80C5";
fsType = "vfat";
};
fileSystems."/vol" =
{ device = "/dev/disk/by-label/data0";
fsType = "ext4";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/d5f024b4-0b94-4140-9a1e-2c8ed4415d3b"; }
];
virtualisation.hypervGuest.enable = true;
}