Revert "remove lorri" This reverts commit a6e18b5841fee0472ce2275aa06c842d1ca8c233.
5 files changed, 25 insertions(+), 1 deletion(-)
M system/settings/darwin.nix → system/settings/darwin.nix
@@ -25,6 +25,18 @@ nixpkgs.config = { allowUnfree = true; }; + services.lorri.enable = true; + launchd.user.agents.lorri = { + serviceConfig = { + RunAtLoad = lib.mkForce false; + Sockets = { + daemon = { + SockPathName = "${(builtins.getEnv "HOME")}/Library/Caches/com.github.target.lorri.lorri.lorri/daemon.socket"; + }; + }; + }; + }; + environment.launchDaemons = { "limit.maxfiles.plist" = { text = ''
M user/settings/development/base.nix → user/settings/development/base.nix
@@ -142,4 +142,7 @@ )}" } ''; }; + services.lorri = { + enable = pkgs.stdenv.isLinux; + }; }
M user/settings/shell.nix → user/settings/shell.nix
@@ -125,6 +125,9 @@ jb = "just build"; jt = "just test"; jr = "just run"; + lw = "lorri watch"; + lwo = "lorri watch --once"; + nsh = "nix-shell"; nb = "nix-build"; nd = "nix develop";
M user/settings/user-interface.nix → user/settings/user-interface.nix
@@ -39,5 +39,6 @@ beeper kdePackages.neochat kdePackages.kleopatra ]); + services.lorri.enableNotifications = true; services.emacs.startWithUserSession = "graphical"; }