update homemanager settings

This commit is contained in:
christoph.hollizeck 2024-03-26 22:17:37 +01:00 committed by Christoph Hollizeck
parent 8c73e98ee0
commit a71d7363c2
Signed by: Daholli
GPG key ID: 249300664F2AF2C7

View file

@ -1,19 +0,0 @@
{
options,
config,
lib,
pkgs,
...
}:
with lib;
with lib.wyrdgard; let
cfg = config.wyrdgard.tools.nix-ld;
in {
options.wyrdgard.tools.nix-ld = with types; {
enable = mkBoolOpt false "Wether or not to enable nix-ld";
};
config = mkIf cfg.enable {
programs.nix-ld.enable = true;
};
}