Compare commits

..

No commits in common. "2ab37d3298299f93cf22c3ebb9e3c643f3b0446c" and "8342746b693e79e126d4c05b54bb5f66285d759c" have entirely different histories.

4 changed files with 6 additions and 10 deletions

View File

@ -15,5 +15,6 @@
}
'';
};
programs.noisetorch.enable = true;
};
}

View File

@ -7,13 +7,6 @@
gnome.nautilus
gnome.sushi # Quick preview with spacebar
];
programs.fish.functions = {
qr = {
body =
"${pkgs.qrencode}/bin/qrencode $argv[1] -o /tmp/qr.png | ${pkgs.gnome.sushi}/bin/sushi /tmp/qr.png";
};
};
};
};

View File

@ -39,9 +39,6 @@ in {
pulse.enable = true;
};
# Provides audio source with background noise filtered
programs.noisetorch.enable = true;
# These aren't necessary, but helpful for the user
environment.systemPackages = with pkgs; [
pamixer # Audio control

View File

@ -59,6 +59,11 @@ in {
argumentNames = "target";
body = "${pkgs.prettyping}/bin/prettyping --nolegend $target";
};
qr = {
# Fix for non-macOS
body =
"${pkgs.qrencode}/bin/qrencode $argv[1] -o /tmp/qr.png | ${pkgs.gnome.sushi}/bin/sushi /tmp/qr.png";
};
};
};