fix startup task units

This commit is contained in:
Nathan McCarty 2023-02-21 16:35:44 -05:00
parent 91dee1325b
commit 4b9e1b998b
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 3 additions and 1 deletions

View File

@ -62,6 +62,7 @@
${pkgs.solaar}/bin/solaar -w hide
'';
};
Install = { WantedBy = [ "graphical-session.target" ]; };
};
# Startup noisetorch on our USB mic
noisetorch-startup = {
@ -70,11 +71,12 @@
After = [ "graphical-session.target" ];
};
Service = {
Type = "Noisetorch";
Type = "oneshot";
ExecStart = ''
/run/wrappers/bin/noisetorch -i alsa_input.usb-18072020_JLAB_TALK_GO_MICROPHONE-00.analog-stereo
'';
};
Install = { WantedBy = [ "graphical-session.target" ]; };
};
};