Notion webapp
This commit is contained in:
parent
35973537bd
commit
6e3edf1484
4 changed files with 29 additions and 8 deletions
21
modules/notion.nix
Normal file
21
modules/notion.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue