12 lines
152 B
Nix
Executable File
12 lines
152 B
Nix
Executable File
{
|
|
pkgs,
|
|
}:
|
|
pkgs.writeShellApplication {
|
|
name = "scheck";
|
|
text = ''
|
|
#!/run/current-system/sw/bin/bash
|
|
|
|
[ "$SOUNDS_ENABLED" -eq 1 ]
|
|
'';
|
|
}
|