add a desktop shortcut for czkawka

This commit is contained in:
Andreas Zweili 2021-12-26 14:26:55 +01:00
parent 52570b787a
commit 990dbc2316
2 changed files with 15 additions and 1 deletions

View File

@ -4,6 +4,7 @@
./common
./work-desktop.nix
./software/ansible
./software/czkawka
./software/dunst
./software/git
./software/keeweb
@ -18,7 +19,6 @@
home.packages = with pkgs; [
arc-theme
calibre
czkawka
digikam
evince
firefox

View File

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
czkawka
];
xdg.desktopEntries = {
czkawka = {
name = "Czkawka";
exec = "czkawka_gui";
terminal = false;
categories = [ "System" ];
};
};
}