improve nixos wrapper module

This commit is contained in:
atagen 2026-02-26 15:20:32 +11:00
parent c53377a504
commit bd51402a95
2 changed files with 34 additions and 15 deletions

View file

@ -46,11 +46,9 @@
sys = pkgs.stdenv.hostPlatform.system;
in
{
config = {
imports = [ ./nix/module.nix ];
wrapperPkg = self.packages.${sys}.yoke-lite;
environment.systemPackages = [ self.packages.${sys}.yoke ];
};
imports = [ ./nix/module.nix ];
security.wrapperPkg = self.packages.${sys}.yoke-lite;
environment.systemPackages = [ self.packages.${sys}.yoke ];
};
};
}