mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
11 lines
248 B
Nix
11 lines
248 B
Nix
{ config, pkgs, lib, ...}:
|
|
{
|
|
environment.sessionVariables.NIXOS_OZONE_WL = lib.mkIf (config.services.xserver.displayManager.gdm.wayland) "1";
|
|
|
|
users.users.yoda = {
|
|
packages = with pkgs; [
|
|
joplin-desktop # Markdown notes
|
|
];
|
|
};
|
|
}
|