nix/host/x86_64-linux/max/Fan.nix
2024-12-16 06:33:51 +03:00

20 lines
296 B
Nix

{
__findFile,
pkgs,
...
}: let
wm2fc = pkgs.callPackage <package/wm2fc> {};
in {
environment.systemPackages = with pkgs; [
wm2fc
];
security.wrappers.wm2fc = {
source = "${wm2fc}/bin/wm2fc";
owner = "root";
group = "root";
setuid = true;
permissions = "u+rx,g+x,o+x";
};
}