mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
32 lines
795 B
Nix
32 lines
795 B
Nix
_: {
|
|
flake.homeModules.desktopEntries = _: {
|
|
# for when the system lacks of a .desktop file
|
|
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
|
|
'';
|
|
};
|
|
};
|
|
}
|