Modularize '/etc/configuration.nix'

This commit is contained in:
2025-05-30 20:28:48 +02:00
parent f948a51a63
commit 931244ee90
9 changed files with 84 additions and 109 deletions

7
modules/bootloader.nix Normal file
View File

@@ -0,0 +1,7 @@
{ ... }:
{
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
boot.loader.grub.useOSProber = true;
}