From 6f4658d7da8619f33970bfde8691c0e8d85f91f4 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 15 Jan 2024 16:18:56 +0300 Subject: [PATCH] Utilize merge functions more --- hosts/cube/hardware.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hosts/cube/hardware.nix b/hosts/cube/hardware.nix index 6d11d93..031996f 100644 --- a/hosts/cube/hardware.nix +++ b/hosts/cube/hardware.nix @@ -1,8 +1,8 @@ -{ ulib, modulesPath, ... }: with ulib; +{ ulib, modulesPath, ... }: with ulib; merge -serverSystemConfiguration { - imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; +(modulesPath + "/profiles/qemu-guest.nix") +(serverSystemConfiguration { boot.loader.grub = enabled { device = "/dev/vda"; useOSProber = true; @@ -20,4 +20,4 @@ serverSystemConfiguration { device = "/dev/disk/by-uuid/a14e3685-693a-4099-a2fe-ce959935dd50"; fsType = "ext4"; }; -} +})