Compare commits

..

3 commits

Author SHA1 Message Date
840765fe8a fix: remove noctalia media mini 2026-01-24 18:11:10 -08:00
b930b518c4 feat: remove duplicate lisps 2026-01-24 18:11:10 -08:00
12efce7c13 ??? 2026-01-24 18:11:07 -08:00
2 changed files with 0 additions and 53 deletions

View file

@ -41,16 +41,6 @@ in {
} }
]; ];
center = [ 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"; id = "Clock";
formatHorizontal = "yyyy-MM-dd HH:mm t"; formatHorizontal = "yyyy-MM-dd HH:mm t";

View file

@ -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))
];
}