nix-git/modules/rnote.nix

18 lines
426 B
Nix
Raw Normal View History

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