mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
joplin-desktop on Wayland
This commit is contained in:
parent
d1025e0258
commit
45f6096f29
@ -24,6 +24,7 @@
|
|||||||
#../../modules/vscodium.nix
|
#../../modules/vscodium.nix
|
||||||
#../../modules/signal-desktop.nix
|
#../../modules/signal-desktop.nix
|
||||||
#../../modules/element-desktop.nix
|
#../../modules/element-desktop.nix
|
||||||
|
#../../modules/joplin-desktop.nix
|
||||||
#../../modules/tor-browser.nix
|
#../../modules/tor-browser.nix
|
||||||
#../../modules/autostart.nix
|
#../../modules/autostart.nix
|
||||||
#../../modules/wallpaper.nix
|
#../../modules/wallpaper.nix
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
../../modules/vscodium.nix
|
../../modules/vscodium.nix
|
||||||
../../modules/signal-desktop.nix
|
../../modules/signal-desktop.nix
|
||||||
../../modules/element-desktop.nix
|
../../modules/element-desktop.nix
|
||||||
|
../../modules/joplin-desktop.nix
|
||||||
../../modules/tor-browser.nix
|
../../modules/tor-browser.nix
|
||||||
../../modules/autostart.nix
|
../../modules/autostart.nix
|
||||||
../../modules/wallpaper.nix
|
../../modules/wallpaper.nix
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
../../modules/vscodium.nix
|
../../modules/vscodium.nix
|
||||||
../../modules/signal-desktop.nix
|
../../modules/signal-desktop.nix
|
||||||
../../modules/element-desktop.nix
|
../../modules/element-desktop.nix
|
||||||
|
../../modules/joplin-desktop.nix
|
||||||
../../modules/tor-browser.nix
|
../../modules/tor-browser.nix
|
||||||
../../modules/autostart.nix
|
../../modules/autostart.nix
|
||||||
../../modules/wallpaper.nix
|
../../modules/wallpaper.nix
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
#../../modules/vscodium.nix
|
#../../modules/vscodium.nix
|
||||||
#../../modules/signal-desktop.nix
|
#../../modules/signal-desktop.nix
|
||||||
#../../modules/element-desktop.nix
|
#../../modules/element-desktop.nix
|
||||||
|
#../../modules/joplin-desktop.nix
|
||||||
#../../modules/tor-browser.nix
|
#../../modules/tor-browser.nix
|
||||||
#../../modules/autostart.nix
|
#../../modules/autostart.nix
|
||||||
#../../modules/wallpaper.nix
|
#../../modules/wallpaper.nix
|
||||||
|
15
modules/joplin-desktop.nix
Normal file
15
modules/joplin-desktop.nix
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{ config, pkgs, lib, ...}:
|
||||||
|
{
|
||||||
|
# TODO: Similar to signal-desktop, joplin-desktop crashes frequently on Wayland.
|
||||||
|
# As of 2023-10-20, the stable version did not start,
|
||||||
|
# but unstable does.
|
||||||
|
|
||||||
|
environment.sessionVariables.NIXOS_OZONE_WL = lib.mkIf (config.services.xserver.displayManager.gdm.wayland) "1";
|
||||||
|
|
||||||
|
users.users.yoda = {
|
||||||
|
packages = with pkgs; [
|
||||||
|
#joplin-desktop # Markdown notes
|
||||||
|
unstable.joplin-desktop # Markdown notes
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
@ -35,7 +35,6 @@
|
|||||||
#gnome-secrets # Password manager (Native Wayland client), but very slow.
|
#gnome-secrets # Password manager (Native Wayland client), but very slow.
|
||||||
keepassxc # Password manager. TODO Wayland: Maybe QT_QPA_PLATFORM defined in ghostwriter.nix fixed blurry fonts?
|
keepassxc # Password manager. TODO Wayland: Maybe QT_QPA_PLATFORM defined in ghostwriter.nix fixed blurry fonts?
|
||||||
tartube-yt-dlp # Video downloader (front-end for yt-dlp)
|
tartube-yt-dlp # Video downloader (front-end for yt-dlp)
|
||||||
joplin-desktop # Markdown notes
|
|
||||||
rnote # Handwritten notes
|
rnote # Handwritten notes
|
||||||
xournalpp # Handwritte notes
|
xournalpp # Handwritte notes
|
||||||
pdfarranger # PDF files: Split, merge, rotate, rearrange, export selected pages
|
pdfarranger # PDF files: Split, merge, rotate, rearrange, export selected pages
|
||||||
|
Loading…
Reference in New Issue
Block a user