diff options
author | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-07-17 19:26:57 +0200 |
---|---|---|
committer | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-07-17 19:26:57 +0200 |
commit | 6258bc858702b4c07ec01428b29256067eff99f5 (patch) | |
tree | 7c850111d5a369c68cb19069bdf838ab71343dc4 | |
parent | 8b1917696a0a9b84473f39c09bd87e6891696e92 (diff) | |
download | nixos-6258bc858702b4c07ec01428b29256067eff99f5.tar nixos-6258bc858702b4c07ec01428b29256067eff99f5.tar.gz nixos-6258bc858702b4c07ec01428b29256067eff99f5.tar.bz2 nixos-6258bc858702b4c07ec01428b29256067eff99f5.tar.xz nixos-6258bc858702b4c07ec01428b29256067eff99f5.zip |
syntax
-rw-r--r-- | bragi.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -53,7 +53,7 @@ in rec { | |||
53 | paths = [ (pkgs.jack2Full.override { dbus = null; }) ]; | 53 | paths = [ (pkgs.jack2Full.override { dbus = null; }) ]; |
54 | buildInputs = [ pkgs.makeWrapper ]; | 54 | buildInputs = [ pkgs.makeWrapper ]; |
55 | postBuild = '' | 55 | postBuild = '' |
56 | for bin in $out/bin/*; do | 56 | for bin in $out/bin/${"*"}; do |
57 | wrapProgram $bin \ | 57 | wrapProgram $bin \ |
58 | --set JACK_PROMISCUOUS_SERVER 1 \ | 58 | --set JACK_PROMISCUOUS_SERVER 1 \ |
59 | --run "umask 0" | 59 | --run "umask 0" |
@@ -315,7 +315,7 @@ in rec { | |||
315 | systemd.services."thermoprint" = { | 315 | systemd.services."thermoprint" = { |
316 | environment = { | 316 | environment = { |
317 | THERMOPRINT_CONFIG = "/etc/thermoprint-server"; | 317 | THERMOPRINT_CONFIG = "/etc/thermoprint-server"; |
318 | THERMOPRINT_CACHE = ${users.extraUsers."thermoprint".home}"/dyre"; | 318 | THERMOPRINT_CACHE = ''${users.extraUsers."thermoprint".home}/dyre''; |
319 | }; | 319 | }; |
320 | serviceConfig = { | 320 | serviceConfig = { |
321 | Type = "simple"; | 321 | Type = "simple"; |