14 lines
231 B
Nix
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;
|
|
};
|
|
|
|
};
|
|
}
|