mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-24 23:03:55 +01:00
added another hdd for automount
This commit is contained in:
parent
2e247f21ab
commit
fec725aad7
|
@ -215,6 +215,8 @@
|
|||
webex
|
||||
#schildichat-desktop
|
||||
|
||||
qbittorrent
|
||||
|
||||
neovide
|
||||
jetbrains.rust-rover
|
||||
|
||||
|
|
|
@ -156,6 +156,21 @@
|
|||
|
||||
services.jellyfin.enable = true;
|
||||
services.jellyfin.user = "xqtc";
|
||||
|
||||
#services.calibre-web = {
|
||||
# enable = true;
|
||||
# user = "xqtc";
|
||||
# listen = {
|
||||
# ip = "localhost";
|
||||
# port = 8083;
|
||||
# };
|
||||
# openFirewall = true;
|
||||
# options = {
|
||||
# calibreLibrary = "/mnt/HDD2/BOOKS";
|
||||
# enableBookUploading = true;
|
||||
# enableBookConversion = true;
|
||||
# };
|
||||
#};
|
||||
|
||||
services = {
|
||||
syncthing = {
|
||||
|
@ -184,7 +199,7 @@
|
|||
|
||||
services.tailscale.enable = true;
|
||||
# Open ports in the firewall.
|
||||
networking.firewall.allowedTCPPorts = [ 8096 8080 ];
|
||||
networking.firewall.allowedTCPPorts = [ 8096 8080 8082 ];
|
||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||
# Or disable the firewall altogether.
|
||||
# networking.firewall.enable = false;
|
||||
|
|
|
@ -23,10 +23,14 @@
|
|||
fsType = "vfat";
|
||||
};
|
||||
|
||||
fileSystems."/mnt" =
|
||||
fileSystems."/mnt/HDD1" =
|
||||
{ device = "/dev/disk/by-uuid/bc68de4c-ad5c-4016-ac11-65de448949fe";
|
||||
fsType = "ext4";
|
||||
};
|
||||
fileSystems."/mnt/HDD2" =
|
||||
{ device = "/dev/disk/by-uuid/c37bc41d-8d92-4b7e-ac45-3420804d086c";
|
||||
fsType = "ext4";
|
||||
};
|
||||
swapDevices = [ ];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
|
|
Loading…
Reference in a new issue