nix-config/modules/common/default.nix
2025-05-30 21:10:10 +02:00

14 lines
231 B
Nix

{ lib, config, ... }:
{
options = {
nixos.enable = lib.mkOption {
default = false;
type = lib.types.bool;
};
home.enable = lib.mkOption {
default = false;
type = lib.types.bool;
};
};
}