pi4: install redlib

This commit is contained in:
NullBite 2024-06-23 00:35:34 -04:00
parent 91f7d08bac
commit a09fb0ba96
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
2 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,42 @@
Addons4Kodi
archlinux
AreTheStraightsOK
autism
beatsaber
Bitwarden
boykisser
ConservativeRap
crackheadcraigslist
crackwatch
DataHoarder
Destiny2
DestinyMemes
DestinyTheGame
duolingo
ennnnnnnnnnnnbbbbbby
evilautism
femboymemes
feminineboys
flatpak
geometrydash
homeassistant
ihaveihaveihavereddit
linux
linux_gaming
NixOS
NonBinaryTalk
okbuddyhetero
peepeeshart
prismlauncher
rust
rustjerk
selfhosted
steam
SteamDeck
talesfromtechsupport
techsupport
termux
theamazingdigitalciru
Ultrakill
VaushV
whenthe

View File

@ -77,5 +77,19 @@
enable = true; enable = true;
storageDriver = "btrfs"; storageDriver = "btrfs";
}; };
systemd.services.libreddit.environment = {
LIBREDDIT_DEFAULT_SUBSCRIPTIONS = lib.pipe ./reddit-subscriptions.txt [
builtins.readFile
(lib.splitString "\n")
(lib.filter (x: x != ""))
(lib.concatStringsSep "+")
];
};
services.libreddit = {
enable = true;
port = 8087;
pkg = pkgs.redlib;
};
}; };
} }