commit ecd81974b86586bca0bf6613eb25db295829e569 parent 4aad361c353762bbbbc7c8fc355ae5b52a8cb43c Author: Milutin Popovic <milutin@popovic.xyz> Date: Sun, 4 Jan 2026 16:38:19 +0000 fix user systemd service Diffstat:
| M | modules/mbsync_timer.nix | | | 2 | +- |
| M | system/host/host-frame.nix | | | 1 | - |
| M | users/mika.nix | | | 11 | +++++++---- |
3 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/modules/mbsync_timer.nix b/modules/mbsync_timer.nix @@ -10,7 +10,7 @@ }; Service = { Type = "oneshot"; - ExecStart = "${pkgs.isync}/bin/mbsync -c %h/.config/isync/mbsyncrc -a -q"; + ExecStart = "${pkgs.zsh}/bin/zsh -c 'mbsync -c .config/isync/mbsyncrc -a -q'"; }; Install = { wantedBy = [ "default.target" ]; diff --git a/system/host/host-frame.nix b/system/host/host-frame.nix @@ -159,7 +159,6 @@ acpilight ]; - # fonts fonts.packages = with pkgs; [ nerd-fonts.terminess-ttf diff --git a/users/mika.nix b/users/mika.nix @@ -68,10 +68,13 @@ in ''; }; - xdg.configFile = lib.genAttrs configDirs (dir: { - source = link "${dotfiles}/.config/${dir}"; - recursive = true; - }); + xdg.configFile = let + filteredDirs = builtins.filter (dir: dir != "systemd") configDirs; + in + lib.genAttrs filteredDirs (dir: { + source = link "${dotfiles}/.config/${dir}"; + recursive = true; + }); }