New k0 in s2d cluster

This commit is contained in:
Jonas Juselius
2020-11-18 15:08:36 +01:00
parent 6b947c5f92
commit 26e0f6a453
6 changed files with 49 additions and 43 deletions

View File

@@ -1,25 +1,27 @@
# 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, ... }:
{ config, lib, pkgs, modulesPath, ... }:
{
imports = [ ];
boot.initrd.availableKernelModules = [ "ata_piix" "mptspi" "floppy" "sd_mod" "sr_mod" ];
boot.initrd.availableKernelModules = [ "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/46951acf-de3e-44c3-8d9d-4aa97e691630";
{ device = "/dev/disk/by-uuid/2306f185-eff6-43a4-b032-4c9f14fb0893";
fsType = "ext4";
};
fileSystems."/vol/brick0" =
{ device = "/dev/gfs_vg/brick0";
fsType = "ext4";
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/3D9E-1634";
fsType = "vfat";
};
swapDevices = [ ];
nix.maxJobs = lib.mkDefault 1;
virtualisation.hypervGuest.enable = true;
}