All scripts have been moved to the overlay folder in the top level directory Overlay is now instantiated per configuration to make use of the host variable
10 lines
150 B
Nix
Executable File
10 lines
150 B
Nix
Executable File
{ pkgs, }:
|
|
pkgs.writeShellApplication {
|
|
name = "scheck";
|
|
text = ''
|
|
#!/run/current-system/sw/bin/bash
|
|
|
|
[ "$SOUNDS_ENABLED" -eq 1 ]
|
|
'';
|
|
}
|