Skip to content

Commit

Permalink
feat(notebook): replaced jopline by logseq
Browse files Browse the repository at this point in the history
  • Loading branch information
Wittano committed Sep 29, 2024
1 parent fc7fdf1 commit bd5f5bc
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
8 changes: 7 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,13 @@
import p {
inherit system;

config.allowUnfree = true;
config = {
allowUnfree = true;
permittedInsecurePackages = [
"electron-27.3.11"
];
};

overlays = overlays.systemOverlays ++ [ inputs.emacs-overlay.overlays.emacs ];
};

Expand Down
10 changes: 7 additions & 3 deletions modules/desktop/submodules/general.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs, lib, unstable, master, ... }:
{ pkgs, lib, unstable, ... }:
with lib;
with lib.my;
let
Expand All @@ -14,7 +14,7 @@ in
"vivaldi"
# "telegram-desktop"
# "vesktop"
"joplin-desktop"
# "joplin-desktop"
"spotify"
# "freetube"
"gnome-pomodoro"
Expand All @@ -26,6 +26,9 @@ in
programs.file-roller.enable = true; # Archive explorer
programs.evince.enable = true; # PDF viever

nixpkgs.config.permittedInsecurePackages = [
"electron-27.3.11"
];

home-manager.users.wittano = {
programs.fish.shellAliases.open = "xdg-open";
Expand All @@ -50,7 +53,7 @@ in
# Apps
spotify
# master.freetube # Youtube desktop
unstable.joplin-desktop # Notebook
# unstable.joplin-desktop # Notebook
unstable.vscodium # VS code
minder # Mind maps
# insomnia # REST API Client
Expand All @@ -67,6 +70,7 @@ in
# element-desktop # matrix communicator
# master.vesktop
# irssi # IRC chat
logseq
];
};
};
Expand Down
7 changes: 7 additions & 0 deletions modules/services/syncthing.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ in
"Win10VM"
];
};
notes = {
id = "dc4rh-q4bvw";
path = "/mnt/samba/Notebook";
devices = [
"Phone"
];
};
openttd = {
id = "dmzkg-75il2";
path = "~/.local/share/openttd/save/multi";
Expand Down

0 comments on commit bd5f5bc

Please sign in to comment.