feat: add freshrss and calibre-web
Some checks failed
/ test (push) Failing after 2s

This commit is contained in:
nydragon 2025-02-18 19:05:48 +01:00
parent 831cb6b0f4
commit 4581e8ff1f
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
5 changed files with 61 additions and 1 deletions

View file

@ -0,0 +1,20 @@
{ }:
{
config = {
calibre-web = {
enable = true;
options = {
enableBookUploading = true;
};
};
fileSystems."/mnt/books" = {
device = "192.168.178.21:/mnt/Fort/data/books";
fsType = "nfs";
options = [
"x-systemd.automount"
];
};
};
}

View file

@ -9,6 +9,7 @@
(modulesPath + "/profiles/qemu-guest.nix")
./disk-config.nix
./adguard.nix
./calibre-web.nix
];
swapDevices = [
@ -21,6 +22,10 @@
file = ../../secrets/adguard-dns-list.age;
mode = "444";
};
freshrss-default-password = {
file = ../../secrets/freshrss-default-password.age;
owner = config.services.freshrss.user;
};
};
boot.loader.grub = {
@ -124,6 +129,16 @@
};
incremental.enable = true;
}
{
sources = [ "/mnt/books" ];
target = {
location = "books";
type = "rsyncd";
host = "nihilus";
};
incremental.enable = true;
}
];
};
};
@ -176,6 +191,11 @@
"paperless.ccnlc.eu" = mkVHLocal config.modules.server.paperless.port;
"fritz.ccnlc.eu" = mkVH "http://192.168.178.1" 80;
"truenas.ccnlc.eu" = mkVH "https://192.168.178.21" 443;
"calibre.ccnlc.eu" = mkVHLocal config.services.calibre-web.listen.port;
${config.services.freshrss.virtualHost} = {
forceSSL = true;
useACMEHost = "ccnlc.eu";
};
};
};
@ -231,6 +251,13 @@
port = 5000;
};
freshrss = {
enable = true;
passwordFile = config.age.secrets.freshrss-default-password.path;
virtualHost = "rss.ccnlc.eu";
baseUrl = "https://rss.ccnlc.eu";
};
home-assistant = {
enable = true;
openFirewall = true;

View file

@ -22,15 +22,17 @@ in
programs.steam = {
enable = true;
gamescopeSession.enable = true; # Adds a steam entry to the login manager
extest.enable = true;
localNetworkGameTransfers.openFirewall = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
lutris
mangohud
heroic
];
};
}

View file

@ -0,0 +1,7 @@
age-encryption.org/v1
-> ssh-ed25519 a1hgwg jQShep0qAznVUIKf3/tZk3Ax7xdIG55K/vo/WgTMqxo
822i7jJOTvRKh07Gt2ku3wKARZ60d3SZYiQ7sXh6Y9Q
-> ssh-ed25519 WcjW5A Q6DSl3XFuXmIXtk+gdpDYjQILvc9IvVB8xaTw/lDnwM
c9nOjNf/Wz97hDQFgbr3hoyuy9NGVYTDiFq79cmpGM8
--- QEJe1HN6nbQdjHAhL4DRJvcc7WJsfSMddYJhkKMSOKE
™¼Ù˯iä!ìO§ß­ý<>2+Z¨0¹iʹõÕön´<6E>áéuœnÏ¥êNw‰<77>úe·%±Æ5<C2BD>Ÿ¡¤ D;º—{?FKQ»xA,©Ièú½ |NzX/ÍhzLþŽ

View file

@ -20,4 +20,8 @@ in
raptus
ny
];
"freshrss-default-password.age".publicKeys = [
shan
ny
];
}