Files
nixpkgs/pkgs/os-specific/linux/scx/default.nix
T
John Titor 286aa47c06 scx: remove need for custom update script
nix-shell maintainers/scripts/update.nix --argstr package scx.rustscheds

Should be ran from now on
2025-10-21 16:47:10 +05:30

11 lines
204 B
Nix

{
lib,
callPackage,
}:
lib.mapAttrs (name: scheduler: callPackage scheduler { }) {
cscheds = import ./scx_cscheds.nix;
rustscheds = import ./scx_rustscheds.nix;
full = import ./scx_full.nix;
}