20 lines
397 B
Nix
20 lines
397 B
Nix
{ pkgs, ... }:
|
|
with pkgs;
|
|
let
|
|
cmd = "${google-chrome}/bin/google-chrome-stable --app=https://keep.google.com";
|
|
desktopItem = pkgs.makeDesktopItem
|
|
{
|
|
name = "Keep";
|
|
type = "Application";
|
|
exec = cmd;
|
|
icon = "keep";
|
|
desktopName = "Keep";
|
|
comment = "Google Keep note app";
|
|
categories = "Office;";
|
|
};
|
|
in
|
|
{
|
|
home.packages = [
|
|
desktopItem
|
|
];
|
|
}
|