Files
nixos-config/overlay/scripts/wm-controls/s_check.nix

10 lines
153 B
Nix
Executable File

{ pkgs, }:
pkgs.writeShellApplication {
name = "scheck";
text = ''
#!/run/current-system/sw/bin/bash
[ "$SOUNDS_ENABLED" = "true" ]
'';
}