nixos/home/modules/default.nix

18 lines
260 B
Nix
Raw Normal View History

{ lib, ... }:
{
imports = [
./nix.nix
];
options = {
youthlic.nixos.enable = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = ''
whether the os is nixos
'';
};
};
}