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