mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-25 18:28:41 +02:00
12 lines
234 B
Nix
12 lines
234 B
Nix
{ makeDesktopItem }:
|
|
makeDesktopItem {
|
|
name = "firefox";
|
|
desktopName = "firefox";
|
|
exec = "firefox %U";
|
|
terminal = false;
|
|
icon = "firefox";
|
|
type = "Application";
|
|
categories = [ "Network" ];
|
|
comment = "firefox boxed";
|
|
}
|