mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
add rnote to favorites
This commit is contained in:
parent
b5b6a63225
commit
dabafdc0fc
@ -38,6 +38,7 @@
|
|||||||
../../modules/programs.nix
|
../../modules/programs.nix
|
||||||
../../modules/flatpak.nix
|
../../modules/flatpak.nix
|
||||||
../../modules/file-roller.nix
|
../../modules/file-roller.nix
|
||||||
|
../../modules/rnote.nix
|
||||||
../../modules/ausweisapp.nix
|
../../modules/ausweisapp.nix
|
||||||
../../modules/nextcloud-client.nix
|
../../modules/nextcloud-client.nix
|
||||||
../../modules/syncthing.nix
|
../../modules/syncthing.nix
|
||||||
|
@ -41,6 +41,7 @@
|
|||||||
../../modules/programs.nix
|
../../modules/programs.nix
|
||||||
../../modules/flatpak.nix
|
../../modules/flatpak.nix
|
||||||
../../modules/file-roller.nix
|
../../modules/file-roller.nix
|
||||||
|
../../modules/rnote.nix
|
||||||
../../modules/ausweisapp.nix
|
../../modules/ausweisapp.nix
|
||||||
../../modules/nextcloud-client.nix
|
../../modules/nextcloud-client.nix
|
||||||
../../modules/syncthing.nix
|
../../modules/syncthing.nix
|
||||||
|
@ -89,7 +89,6 @@
|
|||||||
epiphany # Web browser
|
epiphany # Web browser
|
||||||
unstable.servo # Web browser
|
unstable.servo # Web browser
|
||||||
tartube-yt-dlp # Video downloader (front-end for yt-dlp)
|
tartube-yt-dlp # Video downloader (front-end for yt-dlp)
|
||||||
rnote # Handwritten notes
|
|
||||||
xournalpp # Handwritte notes
|
xournalpp # Handwritte notes
|
||||||
pdfarranger # PDF files: Split, merge, rotate, rearrange, export selected pages
|
pdfarranger # PDF files: Split, merge, rotate, rearrange, export selected pages
|
||||||
# Office suite.
|
# Office suite.
|
||||||
|
17
modules/rnote.nix
Normal file
17
modules/rnote.nix
Normal 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"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user