16 lines
227 B
Nix
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 {
|
|
|
|
};
|
|
}
|