nix-git/modules/rnote.nix

18 lines
422 B
Nix
Raw Normal View History

2024-10-17 15:50:37 +02:00
{ config, pkgs, lib, ... }:
{
users.users.yoda = {
packages = with pkgs; [
unstable.rnote # Handwritten notes
];
};
programs.dconf.enable = true;
home-manager.users.yoda = { osConfig, config, pkgs, lib, ... }: {
dconf.settings = {
"org/gnome/shell" = {
favorite-apps = lib.mkIf (osConfig.networking.hostName == "yodaTab") ["com.github.flxzt.rnote.desktop"];
};
};
};
}