1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Utilize merge functions more

This commit is contained in:
RGBCube 2024-01-15 16:18:56 +03:00
parent 63ce0dd2b5
commit 6f4658d7da
No known key found for this signature in database

View file

@ -1,8 +1,8 @@
{ ulib, modulesPath, ... }: with ulib; { ulib, modulesPath, ... }: with ulib; merge
serverSystemConfiguration { (modulesPath + "/profiles/qemu-guest.nix")
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
(serverSystemConfiguration {
boot.loader.grub = enabled { boot.loader.grub = enabled {
device = "/dev/vda"; device = "/dev/vda";
useOSProber = true; useOSProber = true;
@ -20,4 +20,4 @@ serverSystemConfiguration {
device = "/dev/disk/by-uuid/a14e3685-693a-4099-a2fe-ce959935dd50"; device = "/dev/disk/by-uuid/a14e3685-693a-4099-a2fe-ce959935dd50";
fsType = "ext4"; fsType = "ext4";
}; };
} })