diff --git a/hosts/noximilien/default.nix b/hosts/noximilien/default.nix
index 5ab387d..a44c42e 100644
--- a/hosts/noximilien/default.nix
+++ b/hosts/noximilien/default.nix
@@ -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
diff --git a/profiles/web/docs/default.nix b/profiles/web/docs/default.nix
index d161c1a..9a49d6d 100644
--- a/profiles/web/docs/default.nix
+++ b/profiles/web/docs/default.nix
@@ -33,6 +33,8 @@
};
};
+ # TODO: host man pages (man -H)
+
config = let
cfg = config.services.docs-to-host;
mkRow = {dirname, basename, path, desc}: ''
${dirname} | ${desc}'';
diff --git a/profiles/web/services/rss-bridge.nix b/profiles/web/services/rss-bridge.nix
index ccdde45..3c33fa2 100644
--- a/profiles/web/services/rss-bridge.nix
+++ b/profiles/web/services/rss-bridge.nix
@@ -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;
diff --git a/users/pbsds/home/default.nix b/users/pbsds/home/default.nix
index e42574d..4baf242 100644
--- a/users/pbsds/home/default.nix
+++ b/users/pbsds/home/default.nix
@@ -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";
|