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