remove base

This commit is contained in:
smayzy 2026-01-17 12:15:51 +01:00
parent 3566c46ac5
commit b4c7a4371c
2 changed files with 0 additions and 21 deletions

View File

@ -1,15 +0,0 @@
{ lib, config, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.base = mkOption {
type = types.bool;
default = false;
description = "";
};
config = mkIf config.smayzy.base {
};
}

View File

@ -1,6 +0,0 @@
{ ... }:
{
imports = [
./base.nix
];
}