From 12efce7c1387f2953710ed0090e5871e19904711 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Sat, 24 Jan 2026 18:11:07 -0800 Subject: [PATCH 1/3] ??? From b930b518c4d45207274970c54594f5d80239ce93 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Sat, 24 Jan 2026 18:10:22 -0800 Subject: [PATCH 2/3] feat: remove duplicate lisps --- nixvim/plugins/lisps.nix | 43 ---------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 nixvim/plugins/lisps.nix diff --git a/nixvim/plugins/lisps.nix b/nixvim/plugins/lisps.nix deleted file mode 100644 index fd850fbb..00000000 --- a/nixvim/plugins/lisps.nix +++ /dev/null @@ -1,43 +0,0 @@ -{ std, lib, pkgs, ... }: let - inherit (lib.attrsets) genAttrs; - inherit (std) set; -in { - extraPlugins = with pkgs.vimPlugins; [ - nvim-paredit - ]; - extraConfigLua = '' - require("nvim-paredit").setup() - ''; - lsp.servers = let - baseServer = { - enable = true; - activate = true; - }; - disablePackage = { - package = null; - }; - serversToGen = [ - "fennel-ls" - "clojure_lsp" - ]; - disablePackageServers = [ - "clojure_lsp" - ]; - in set.merge [ - (genAttrs serversToGen (_: baseServer)) - (genAttrs disablePackageServers (_: disablePackage)) - ]; - plugins = let - pluginsToGen = [ - "conjure" - "autoclose" - ]; - basePlugin = { - enable = true; - autoLoad = true; - }; - in - set.merge [ - (genAttrs pluginsToGen (_: basePlugin)) - ]; -} From 840765fe8a182ebd22de70c397eac3c46ba586e6 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Sat, 24 Jan 2026 18:10:34 -0800 Subject: [PATCH 3/3] fix: remove noctalia media mini --- home/profiles/tiling/noctalia.nix | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/home/profiles/tiling/noctalia.nix b/home/profiles/tiling/noctalia.nix index f5e4f009..e1578aa1 100644 --- a/home/profiles/tiling/noctalia.nix +++ b/home/profiles/tiling/noctalia.nix @@ -41,16 +41,6 @@ in { } ]; center = [ - { - id = "MediaMini"; - showAlbumArt = true; - showVisualizer = false; - scrollingMode = "always"; - autoHide = true; - # check if this works, - # if not, rewrite their system for it o.o - widgetWidth = 300; - } { id = "Clock"; formatHorizontal = "yyyy-MM-dd HH:mm t";