feat: add a paperless desktop entry
This commit is contained in:
parent
397966651d
commit
44331c9146
1 changed files with 12 additions and 0 deletions
12
home/desktop/default.nix
Normal file
12
home/desktop/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
xdg.desktopEntries = {
|
||||||
|
paperless = {
|
||||||
|
name = "Paperless";
|
||||||
|
exec = "${pkgs.xdg-utils}/bin/xdg-open https://paperless.ccnlc.eu";
|
||||||
|
terminal = false;
|
||||||
|
categories = [ "Office" ];
|
||||||
|
icon = ../../assets/favicon-paperless.png;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue