systemd: fix creation of user service unit files (#2867)
* systemd: fix creation of user service unit files * helix: fix failing test due to file output format change Co-authored-by: Nicolas Berbiche <nicolas@normie.dev>
This commit is contained in:
parent
07b941f0c4
commit
66ffa7a0a6
|
@ -41,7 +41,7 @@ let
|
||||||
source = pkgs.writeTextFile {
|
source = pkgs.writeTextFile {
|
||||||
name = pathSafeName;
|
name = pathSafeName;
|
||||||
text = toSystemdIni serviceCfg;
|
text = toSystemdIni serviceCfg;
|
||||||
destination = lib.escapeShellArg "/${filename}";
|
destination = "/${filename}";
|
||||||
} + "/${filename}";
|
} + "/${filename}";
|
||||||
|
|
||||||
wantedBy = target: {
|
wantedBy = target: {
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
theme = "base16"
|
theme = "base16"
|
||||||
|
|
||||||
[keys]
|
|
||||||
[keys.normal]
|
|
||||||
[keys.normal.space]
|
[keys.normal.space]
|
||||||
q = ":q"
|
q = ":q"
|
||||||
space = "file_picker"
|
space = "file_picker"
|
||||||
|
|
Loading…
Reference in a new issue