nix-config/modules/nix/base/base.nix
2025-07-08 17:00:51 +02:00

16 lines
227 B
Nix

{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.base = mkOption {
type = types.bool;
default = false;
description = "";
};
config = mkIf config.smayzy.base {
};
}