8 lines
113 B
Nix
Executable File
8 lines
113 B
Nix
Executable File
{ pkgs }:
|
|
pkgs.writeShellApplication {
|
|
name = "scheck";
|
|
text = ''
|
|
[ "$SOUNDS_ENABLED" = "true" ]
|
|
'';
|
|
}
|