mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-17 20:52:09 -08:00
23 lines
338 B
Nix
23 lines
338 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.liminalOS;
|
|
in
|
|
{
|
|
imports = [
|
|
./linux
|
|
];
|
|
options.liminalOS = {
|
|
darwin.enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to enable liminalOS's default modules and options for Darwin.
|
|
'';
|
|
};
|
|
};
|
|
}
|