This commit is contained in:
parent
831cb6b0f4
commit
4581e8ff1f
5 changed files with 61 additions and 1 deletions
20
hosts/shan/calibre-web.nix
Normal file
20
hosts/shan/calibre-web.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
7
secrets/freshrss-default-password.age
Normal file
7
secrets/freshrss-default-password.age
Normal 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·%±Æ‚5C½‘<C2BD>Ÿ¡¤
D;º—{?FKQ»xA,©Ièú½5Û|NzX/ÍhzLþŽ
|
|
@ -20,4 +20,8 @@ in
|
|||
raptus
|
||||
ny
|
||||
];
|
||||
"freshrss-default-password.age".publicKeys = [
|
||||
shan
|
||||
ny
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue