nix-dotfiles/modules/notion.nix
2021-12-01 11:47:56 +01:00

21 lines
414 B
Nix

{ pkgs, ... }:
with pkgs;
let
link = "https://notion.so";
cmd = "${google-chrome}/bin/google-chrome-stable --app=${link}";
desktopItem = pkgs.makeDesktopItem
{
name = "Notion";
type = "Application";
exec = cmd;
icon = "notion";
desktopName = "Notion";
comment = "Notion web client";
categories = "Office;";
};
in
{
home.packages = [
desktopItem
];
}