10 lines
128 B
Nix
Executable File
10 lines
128 B
Nix
Executable File
{
|
|
self,
|
|
pkgs,
|
|
}:
|
|
pkgs.writeShellScriptBin "scheck" ''
|
|
#!/run/current-system/sw/bin/bash
|
|
|
|
[ "$SOUNDS_ENABLED" -eq 1 ]
|
|
''
|