ladsjkasdk

This commit is contained in:
Peder Bergebakken Sundt 2023-08-21 02:25:43 +02:00
parent d9829b3767
commit 4493693fe4
4 changed files with 6 additions and 2 deletions

View File

@ -33,6 +33,7 @@
../../profiles/web/services/gitea.nix ../../profiles/web/services/gitea.nix
#../../profiles/web/services/hydra.nix #../../profiles/web/services/hydra.nix
../../profiles/web/services/invidious.nix ../../profiles/web/services/invidious.nix
../../profiles/web/services/rss-bridge.nix
../../profiles/web/services/jellyfin.nix ../../profiles/web/services/jellyfin.nix
../../profiles/web/services/libreddit.nix ../../profiles/web/services/libreddit.nix
#../../profiles/web/services/mattermost.nix #../../profiles/web/services/mattermost.nix

View File

@ -33,6 +33,8 @@
}; };
}; };
# TODO: host man pages (man -H)
config = let config = let
cfg = config.services.docs-to-host; cfg = config.services.docs-to-host;
mkRow = {dirname, basename, path, desc}: ''<tr><td><a href="${dirname}/${basename}">${dirname}</a><td>${desc}''; mkRow = {dirname, basename, path, desc}: ''<tr><td><a href="${dirname}/${basename}">${dirname}</a><td>${desc}'';

View File

@ -127,7 +127,8 @@
nixpkgs-review = ''mkdir -p /dev/shm/nixpkgs-review && ln -sfn /dev/shm/nixpkgs-review $HOME/.cache/nixpkgs-review && nixpkgs-review''; nixpkgs-review = ''mkdir -p /dev/shm/nixpkgs-review && ln -sfn /dev/shm/nixpkgs-review $HOME/.cache/nixpkgs-review && nixpkgs-review'';
killall = "killall -v"; 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 --no-sandbox";
atom = "atom --disable-gpu --in-process-gpu --no-sandbox"; atom = "atom --disable-gpu --in-process-gpu --no-sandbox";