carbon: script control external monitor control

This commit is contained in:
Primrose 2024-08-06 14:45:22 +02:00
parent 11a5b54398
commit f759789fcc
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
6 changed files with 36 additions and 8 deletions

15
nix/custom/nd/default.nix Normal file
View file

@ -0,0 +1,15 @@
{
writeShellApplication,
nix-output-monitor,
nvd,
}:
writeShellApplication {
name = "nd";
runtimeInputs = [
nix-output-monitor
nvd
];
text = builtins.readFile ./nd.sh;
}