diff options
author | makefu <github@syntax-fehler.de> | 2022-05-27 00:35:31 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2022-05-27 00:35:31 +0200 |
commit | 0b84135ffd69750974fd5ad7721b64ccd772a4a6 (patch) | |
tree | 5093b06989d9cba87328c6b27261e2e1b9b9ef01 /krebs/1systems/ponte/hw.nix | |
parent | 9ef120c4ed528cb60a9348c8474c2e23912d4960 (diff) | |
parent | e92a58fe0f4edbf047ff4dd89866ae0991d37350 (diff) |
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'krebs/1systems/ponte/hw.nix')
-rw-r--r-- | krebs/1systems/ponte/hw.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/krebs/1systems/ponte/hw.nix b/krebs/1systems/ponte/hw.nix new file mode 100644 index 000000000..78f7a603e --- /dev/null +++ b/krebs/1systems/ponte/hw.nix @@ -0,0 +1,14 @@ +{ modulesPath, ... }: +{ + imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; + boot.loader.efi.efiSysMountPoint = "/boot/EFI"; + boot.loader.grub = { + efiSupport = true; + efiInstallAsRemovable = true; + device = "nodev"; + copyKernels = false; + }; + boot.initrd.kernelModules = [ "nvme" ]; + fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; }; + fileSystems."/boot/EFI" = { device = "/dev/disk/by-uuid/628A-7F3B"; fsType = "vfat"; }; +} |