Added: LogSeq

This commit is contained in:
2025-04-03 00:12:49 +02:00
parent deae658c60
commit fbf4d880ec
4 changed files with 16 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ let
package = pkgs.hyprland;
super = "SUPER";
terminal = "kitty";
fileManager = "dolphin";
fileManager = "spacefm";
menu = "~/.config/rofi/launchers/type-3/launcher.sh";
power = "~/.config/rofi/powermenu/type-6/powermenu.sh";
in

View File

@@ -0,0 +1,13 @@
{ pkgs, ... }:
let
logseq-path = pkgs.logseq.override {
electron_27 = pkgs.electron_34;
};
in
{
home.packages = with pkgs; [
logseq
logseq-patch
];
}