9 lines
364 B
Nix
9 lines
364 B
Nix
|
final: prev:
|
||
|
|
||
|
with (import ./lib.nix final); {
|
||
|
element-web = webApp "element" "https://riot.badat.dev";
|
||
|
youtube-web = webApp "youtube" "https://youtube.com";
|
||
|
github-web = webApp "github" "https://github.com";
|
||
|
bitwarden-web = webApp "bitwarden" "https://vault.steph.tools";
|
||
|
hoogle-web = webApp "hoogle" "https://hoogle.haskell.org";
|
||
|
}
|