mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
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
2 changed files with 1 additions and 4 deletions
|
@ -41,7 +41,7 @@ let
|
|||
source = pkgs.writeTextFile {
|
||||
name = pathSafeName;
|
||||
text = toSystemdIni serviceCfg;
|
||||
destination = lib.escapeShellArg "/${filename}";
|
||||
destination = "/${filename}";
|
||||
} + "/${filename}";
|
||||
|
||||
wantedBy = target: {
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
theme = "base16"
|
||||
|
||||
[keys]
|
||||
[keys.normal]
|
||||
[keys.normal.space]
|
||||
q = ":q"
|
||||
space = "file_picker"
|
||||
|
|
Loading…
Reference in a new issue