diff options
author | Alan Pearce | 2025-03-12 11:17:10 +0100 |
---|---|---|
committer | Alan Pearce | 2025-03-12 11:17:10 +0100 |
commit | a6e18b5841fee0472ce2275aa06c842d1ca8c233 (patch) | |
tree | dd9ae5c00b33d779c0fcc6fbc48856bd1c45dd16 | |
parent | 57be872ed5b7de2657d68ebd8761f8ba760eb582 (diff) | |
download | nixfiles-a6e18b5841fee0472ce2275aa06c842d1ca8c233.tar.lz nixfiles-a6e18b5841fee0472ce2275aa06c842d1ca8c233.tar.zst nixfiles-a6e18b5841fee0472ce2275aa06c842d1ca8c233.zip |
remove lorri
-rw-r--r-- | .envrc | 7 | ||||
-rw-r--r-- | system/settings/darwin.nix | 12 | ||||
-rw-r--r-- | user/settings/development/base.nix | 3 | ||||
-rw-r--r-- | user/settings/shell.nix | 3 | ||||
-rw-r--r-- | user/settings/user-interface.nix | 1 |
5 files changed, 1 insertions, 25 deletions
diff --git a/.envrc b/.envrc index b5fda8db..a4c05ce1 100644 --- a/.envrc +++ b/.envrc @@ -1,7 +1,2 @@ -if type -P lorri &>/dev/null; then - eval "$(lorri direnv)" -else - echo 'while direnv evaluated .envrc, could not find the command "lorri" [https://github.com/nix-community/lorri]' - use nix -fi +use nix PATH_add bin diff --git a/system/settings/darwin.nix b/system/settings/darwin.nix index b49fcf35..233c5b17 100644 --- a/system/settings/darwin.nix +++ b/system/settings/darwin.nix @@ -25,18 +25,6 @@ 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 = '' diff --git a/user/settings/development/base.nix b/user/settings/development/base.nix index 51cf0ffd..0dce4fe0 100644 --- a/user/settings/development/base.nix +++ b/user/settings/development/base.nix @@ -118,7 +118,4 @@ } ''; }; - services.lorri = { - enable = pkgs.stdenv.isLinux; - }; } diff --git a/user/settings/shell.nix b/user/settings/shell.nix index e88ccfe8..a8a525a6 100644 --- a/user/settings/shell.nix +++ b/user/settings/shell.nix @@ -128,9 +128,6 @@ in jt = "just test"; jr = "just run"; - lw = "lorri watch"; - lwo = "lorri watch --once"; - nsh = "nix-shell"; nb = "nix build"; nd = "nix develop"; diff --git a/user/settings/user-interface.nix b/user/settings/user-interface.nix index cf26430f..a7dde811 100644 --- a/user/settings/user-interface.nix +++ b/user/settings/user-interface.nix @@ -42,6 +42,5 @@ in kdePackages.neochat kdePackages.kleopatra ]); - services.lorri.enableNotifications = true; services.emacs.startWithUserSession = "graphical"; } |