21 lines
420 B
Nix
21 lines
420 B
Nix
{ pkgs, ... }:
|
|
with pkgs;
|
|
let
|
|
link = "https://youtube.com";
|
|
cmd = "${google-chrome}/bin/google-chrome-stable --app=${link}";
|
|
desktopItem = pkgs.makeDesktopItem
|
|
{
|
|
name = "YouTube";
|
|
type = "Application";
|
|
exec = cmd;
|
|
icon = "youtube";
|
|
desktopName = "YouTube";
|
|
comment = "YouTube web client";
|
|
categories = "Office;";
|
|
};
|
|
in
|
|
{
|
|
home.packages = [
|
|
desktopItem
|
|
];
|
|
}
|