From dd5e6f561d8abf71f14b517e8b80aab42bd7fb1e Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Tue, 26 Mar 2024 12:04:57 +0100 Subject: [PATCH 1/2] feat(xmonad): Use BSP layout by default --- home/alex/programs/xmonad/config.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/alex/programs/xmonad/config.hs b/home/alex/programs/xmonad/config.hs index c0d1cef..6a572b8 100644 --- a/home/alex/programs/xmonad/config.hs +++ b/home/alex/programs/xmonad/config.hs @@ -37,7 +37,7 @@ compileRestart resume = do executeFile (cacheDir dirs compiledConfig) False args Nothing ) -myLayout = smartBorders . borderResize . Docks.avoidStruts $ toggleLayouts emptyBSP Full +myLayout = smartBorders . borderResize . Docks.avoidStruts $ toggleLayouts Full emptyBSP main :: IO () main = getDirectories >>= launch myConfig From 6827f3210b3c86bbac3b3f3e2a39630ffc792219 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Tue, 26 Mar 2024 15:12:27 +0100 Subject: [PATCH 2/2] fix(paperless): Try to workaround in classification --- hosts/thrall/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/thrall/default.nix b/hosts/thrall/default.nix index 8c045c8..537bd2a 100644 --- a/hosts/thrall/default.nix +++ b/hosts/thrall/default.nix @@ -296,6 +296,10 @@ in { PAPERLESS_URL = "https://docs.failco.de"; PAPERLESS_CONSUMER_RECURSIVE = true; PAPERLESS_CONSUMER_SUBDIRS_AS_TAGS = true; + + # workaround for classification getting stuck, see + # https://github.com/NixOS/nixpkgs/issues/240591#issuecomment-1915678490 + LD_LIBRARY_PATH = "${lib.getLib pkgs.mkl}/lib"; }; };