mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
joplin-desktop
This commit is contained in:
parent
18740e1fb8
commit
4719e6d540
@ -1,15 +1,17 @@
|
|||||||
{ config, pkgs, lib, ...}:
|
{ config, pkgs, lib, ...}:
|
||||||
{
|
{
|
||||||
# TODO: Similar to signal-desktop, joplin-desktop crashes frequently on Wayland.
|
# TODO: Similar to signal-desktop, joplin-desktop crashes frequently on Wayland.
|
||||||
# As of 2023-10-20, the stable version did not start,
|
# As of 2023-10-20, the stable version did not start, but unstable does.
|
||||||
# but unstable does.
|
|
||||||
|
|
||||||
environment.sessionVariables.NIXOS_OZONE_WL = lib.mkIf (config.services.xserver.displayManager.gdm.wayland) "1";
|
environment.sessionVariables.NIXOS_OZONE_WL = lib.mkIf (config.services.xserver.displayManager.gdm.wayland) "1";
|
||||||
|
|
||||||
users.users.yoda = {
|
users.users.yoda = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
#joplin-desktop # Markdown notes
|
(
|
||||||
unstable.joplin-desktop # Markdown notes
|
if (config.services.xserver.displayManager.gdm.wayland)
|
||||||
|
then unstable.joplin-desktop # Markdown notes
|
||||||
|
else joplin-desktop # Markdown notes
|
||||||
|
)
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user