rename options

This commit is contained in:
2026-01-21 09:42:51 -06:00
parent 65f878b20d
commit e86a839bd7
22 changed files with 57 additions and 53 deletions

View File

@@ -1,4 +1,9 @@
{ ... }: {
{ config, lib, ... }: {
options.sysconfig.virtualization.enable = with lib; mkOption {
type = with types; bool;
default = false;
};
imports = let
dir = builtins.readDir ./.;
@@ -7,7 +12,7 @@
(builtins.attrNames dir)
);
config = {
config = lib.mkIf config.sysconfig.virtualisation.enable {
programs.virt-manager.enable = true;
virtualisation.libvirtd.enable = true;