add rnote to favorites

This commit is contained in:
Daniel Langbein 2024-10-17 15:50:37 +02:00
parent b5b6a63225
commit dabafdc0fc
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
4 changed files with 19 additions and 1 deletions

View File

@ -38,6 +38,7 @@
../../modules/programs.nix
../../modules/flatpak.nix
../../modules/file-roller.nix
../../modules/rnote.nix
../../modules/ausweisapp.nix
../../modules/nextcloud-client.nix
../../modules/syncthing.nix

View File

@ -41,6 +41,7 @@
../../modules/programs.nix
../../modules/flatpak.nix
../../modules/file-roller.nix
../../modules/rnote.nix
../../modules/ausweisapp.nix
../../modules/nextcloud-client.nix
../../modules/syncthing.nix

View File

@ -89,7 +89,6 @@
epiphany # Web browser
unstable.servo # Web browser
tartube-yt-dlp # Video downloader (front-end for yt-dlp)
rnote # Handwritten notes
xournalpp # Handwritte notes
pdfarranger # PDF files: Split, merge, rotate, rearrange, export selected pages
# Office suite.

17
modules/rnote.nix Normal file
View File

@ -0,0 +1,17 @@
{ 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"];
};
};
};
}