Begin getting base setup implemented

This commit is contained in:
Kaare Hoff Skovgaard 2025-07-05 15:35:58 +02:00
parent 453099b068
commit 84f6e1a93f
Signed by: khs
GPG key ID: C7D890804F01E9F0
11 changed files with 425 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{
config,
lib,
modulesPath,
...
}:
let
cfg = config.khscodes.hetzner;
in
{
options.khscodes.qemu-guest = {
enable = lib.mkEnableOption "Configures machine with NixOS profile for qemu guest";
};
config = lib.mkIf cfg.enable (import "${modulesPath}/profiles/qemu-guest.nix" { });
}