nix-git/modules/joplin-desktop.nix

11 lines
248 B
Nix
Raw Normal View History

2023-10-20 14:58:29 +02:00
{ config, pkgs, lib, ...}:
{
environment.sessionVariables.NIXOS_OZONE_WL = lib.mkIf (config.services.xserver.displayManager.gdm.wayland) "1";
users.users.yoda = {
packages = with pkgs; [
2023-12-15 13:03:18 +01:00
joplin-desktop # Markdown notes
2023-10-20 14:58:29 +02:00
];
};
}