Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: Change atuin-daemon target to multi-user.target

Network isn't actually needed for it to function, after all

+2 -2
+2 -2
modules/home/cli/atuin/default.nix
··· 29 29 systemd.user.services = 30 30 { 31 31 atuin-daemon = { 32 - Install.WantedBy = ["network-online.target"]; 32 + Install.WantedBy = ["multi-user.target"]; 33 33 Service = { 34 34 ExecStart = "${pkgs.atuin}/bin/atuin daemon"; 35 35 Restart = "on-failure"; ··· 37 37 }; 38 38 Unit = { 39 39 Description = "atuin daemon"; 40 - After = ["network-online.target"]; 40 + After = ["multi-user.target"]; 41 41 X-Restart-Triggers = [ 42 42 config.programs.atuin.package 43 43 config.home.file."${config.home.homeDirectory}/.config/atuin/config.toml".source