mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 22:11:33 +01:00
12 lines
222 B
Nix
12 lines
222 B
Nix
{
|
|
inputs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [inputs.nh.nixosModules.default];
|
|
|
|
options.myConfig.nix-helper.enable = lib.mkEnableOption "";
|
|
|
|
config.nh.enable = config.myConfig.nix-helper.enable;
|
|
}
|