nix-files/pkgs/additional/sxmo-suspend/default.nix
Colin f3c3df2ca7 sxmo_suspend.sh: lift out of hosts/modules/gui/sxmo/hooks
i want to preserve this script for the future, while deleting the rest of my (unused) SXMO config
2024-05-27 00:23:50 +00:00

11 lines
286 B
Nix

{ static-nix-shell }:
static-nix-shell.mkPython3Bin {
# name is `sxmo_suspend.sh` because that's the binary this intends to replace
pname = "sxmo_suspend.sh";
srcRoot = ./.;
pkgs = [ "rtl8723cs-wowlan" "util-linux" ];
extraMakeWrapperArgs = [ "--add-flags" "--verbose" ];
}