summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--.envrc7
-rw-r--r--system/settings/darwin.nix12
-rw-r--r--user/settings/development/base.nix3
-rw-r--r--user/settings/shell.nix3
-rw-r--r--user/settings/user-interface.nix1
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";
 }