mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
33 lines
684 B
Nix
33 lines
684 B
Nix
{
|
|
...
|
|
}:
|
|
# see ../../docs/printing.md
|
|
{
|
|
home.file.".local/share/applications/org.quickshell.desktop" = {
|
|
enable = true;
|
|
text = ''
|
|
[Desktop Entry]
|
|
Name=QuickShell
|
|
Comment=QuickShell application
|
|
Exec=quickshell
|
|
Icon=utilities-terminal
|
|
Type=Application
|
|
Categories=Utility;
|
|
StartupNotify=true
|
|
X-DBUS-ServiceName=org.quickshell
|
|
'';
|
|
};
|
|
home.file.".local/share/applications/org.kde.PrintQueue.desktop" = {
|
|
enable = true;
|
|
text = ''
|
|
[Desktop Entry]
|
|
Type=Application
|
|
Name=Print Queue
|
|
Exec=print-queue
|
|
Icon=printer
|
|
Categories=Utility;
|
|
StartupNotify=true
|
|
'';
|
|
};
|
|
}
|