Reformat + swap odin SSD
This commit is contained in:
parent
1bc27dde82
commit
2f3d05a802
83 changed files with 1448 additions and 931 deletions
|
|
@ -4,17 +4,59 @@ let
|
|||
# cmd = link: "google-chrome-stable --app=${link}";
|
||||
cmd = link: "firefox ${link}";
|
||||
links = [
|
||||
{ desktopName = "Google Calendar"; link = "https://google.com/calendar"; categories = [ "Office" ]; }
|
||||
{ desktopName = "Google Keep"; link = "https://keep.google.com"; categories = [ "Office" ]; }
|
||||
{ desktopName = "Monkeytype"; link = "https://monkeytype.com/"; }
|
||||
{ desktopName = "Netflix"; link = "https://www.netflix.com"; categories = [ "AudioVideo" ]; }
|
||||
{ desktopName = "Notion"; link = "https://notion.so"; categories = [ "Office" ]; }
|
||||
{ desktopName = "Prime Video"; link = "https://primevideo.com"; categories = [ "AudioVideo" ]; }
|
||||
{ desktopName = "Protonmail"; link = "https://mail.protonmail.com"; categories = [ "Office" ]; }
|
||||
{ desktopName = "Twitch"; link = "https://www.twitch.tv"; categories = [ "AudioVideo" ]; }
|
||||
{ desktopName = "WhatsApp"; link = "https://web.whatsapp.com/"; }
|
||||
{ desktopName = "YouTube"; link = "https://www.youtube.com"; categories = [ "AudioVideo" ]; }
|
||||
{ desktopName = "Plex"; link = "https://app.plex.tv"; categories = [ "AudioVideo" ]; }
|
||||
{
|
||||
desktopName = "Google Calendar";
|
||||
link = "https://google.com/calendar";
|
||||
categories = [ "Office" ];
|
||||
}
|
||||
{
|
||||
desktopName = "Google Keep";
|
||||
link = "https://keep.google.com";
|
||||
categories = [ "Office" ];
|
||||
}
|
||||
{
|
||||
desktopName = "Monkeytype";
|
||||
link = "https://monkeytype.com/";
|
||||
}
|
||||
{
|
||||
desktopName = "Netflix";
|
||||
link = "https://www.netflix.com";
|
||||
categories = [ "AudioVideo" ];
|
||||
}
|
||||
{
|
||||
desktopName = "Notion";
|
||||
link = "https://notion.so";
|
||||
categories = [ "Office" ];
|
||||
}
|
||||
{
|
||||
desktopName = "Prime Video";
|
||||
link = "https://primevideo.com";
|
||||
categories = [ "AudioVideo" ];
|
||||
}
|
||||
{
|
||||
desktopName = "Protonmail";
|
||||
link = "https://mail.protonmail.com";
|
||||
categories = [ "Office" ];
|
||||
}
|
||||
{
|
||||
desktopName = "Twitch";
|
||||
link = "https://www.twitch.tv";
|
||||
categories = [ "AudioVideo" ];
|
||||
}
|
||||
{
|
||||
desktopName = "WhatsApp";
|
||||
link = "https://web.whatsapp.com/";
|
||||
}
|
||||
{
|
||||
desktopName = "YouTube";
|
||||
link = "https://www.youtube.com";
|
||||
categories = [ "AudioVideo" ];
|
||||
}
|
||||
{
|
||||
desktopName = "Plex";
|
||||
link = "https://app.plex.tv";
|
||||
categories = [ "AudioVideo" ];
|
||||
}
|
||||
];
|
||||
webAppBuilder =
|
||||
{ desktopName
|
||||
|
|
@ -23,11 +65,10 @@ let
|
|||
, icon ? lib.toLower name
|
||||
, comment ? null
|
||||
, categories ? [ "Network" ]
|
||||
}: pkgs.makeDesktopItem {
|
||||
}:
|
||||
pkgs.makeDesktopItem {
|
||||
inherit name icon desktopName comment categories;
|
||||
exec = cmd link;
|
||||
};
|
||||
in
|
||||
{
|
||||
home.packages = map webAppBuilder links;
|
||||
}
|
||||
{ home.packages = map webAppBuilder links; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue