ladsjkasdk
This commit is contained in:
parent
d9829b3767
commit
4493693fe4
|
@ -33,6 +33,7 @@
|
|||
../../profiles/web/services/gitea.nix
|
||||
#../../profiles/web/services/hydra.nix
|
||||
../../profiles/web/services/invidious.nix
|
||||
../../profiles/web/services/rss-bridge.nix
|
||||
../../profiles/web/services/jellyfin.nix
|
||||
../../profiles/web/services/libreddit.nix
|
||||
#../../profiles/web/services/mattermost.nix
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
};
|
||||
};
|
||||
|
||||
# TODO: host man pages (man -H)
|
||||
|
||||
config = let
|
||||
cfg = config.services.docs-to-host;
|
||||
mkRow = {dirname, basename, path, desc}: ''<tr><td><a href="${dirname}/${basename}">${dirname}</a><td>${desc}'';
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
# RSS-Bridge
|
||||
# The RSS feed for websites missing it
|
||||
# The RSS feed for websites missing it
|
||||
|
||||
services.rss-bridge = {
|
||||
enable = true;
|
||||
|
|
|
@ -127,7 +127,8 @@
|
|||
nixpkgs-review = ''mkdir -p /dev/shm/nixpkgs-review && ln -sfn /dev/shm/nixpkgs-review $HOME/.cache/nixpkgs-review && nixpkgs-review'';
|
||||
|
||||
killall = "killall -v";
|
||||
bin = "perl -pe 'chomp' | curl -is -X POST https://i.kuklef.se/upload -F content=@- -F expiration=10d | grep '^location:' | cut -d' ' -f2-";
|
||||
#bin = "perl -pe 'chomp' | curl -is -X POST https://i.kuklef.se/upload -F content=@- -F expiration=10d | grep '^location:' | cut -d' ' -f2-";
|
||||
bin = "python -c 'import sys; sys.stdout.write(sys.stdin.read().strip())' | curl -is -X POST https://i.kuklef.se/upload -F content=@- -F expiration=10d | grep '^location:' | cut -d' ' -f2-";
|
||||
|
||||
#atom = "atom --no-sandbox";
|
||||
atom = "atom --disable-gpu --in-process-gpu --no-sandbox";
|
||||
|
|
Loading…
Reference in New Issue