nixcfg/hosts/mauville/default.nix

248 lines
5.7 KiB
Nix
Raw Normal View History

2024-03-12 22:14:08 -04:00
# Custom desktop with AMD Ryzen 5 2600, 16GB RAM, AMD Rx 6700, and 1TB SSD + 2TB HDD.
{
2024-04-07 22:16:33 -04:00
config,
input,
2024-04-07 22:16:33 -04:00
lib,
pkgs,
self,
2024-04-07 22:16:33 -04:00
...
}: let
acmeEmail = "alyraffauf@gmail.com";
hostName = "mauville";
domain = "raffauflabs.com";
mediaDirectory = "/mnt/Media";
archiveDirectory = "/mnt/Archive";
in {
imports = [
./filesystems.nix
2024-05-27 21:39:30 -04:00
./hardware.nix
./home.nix
];
boot.loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
system.stateVersion = "23.11";
networking = {
firewall = {
allowedTCPPorts = [
80
443
config.alyraffauf.containers.oci.transmission.port
config.alyraffauf.containers.oci.transmission.bitTorrentPort
];
allowedUDPPorts = [config.alyraffauf.containers.oci.transmission.bitTorrentPort];
};
# My router doesn't expose settings for NAT loopback
# So we have to use this workaround.
extraHosts = ''
127.0.0.1 music.${domain}
2024-06-07 13:14:34 -04:00
127.0.0.1 news.${domain}
127.0.0.1 nixcache.${domain}
127.0.0.1 plex.${domain}
127.0.0.1 podcasts.${domain}
'';
hostName = hostName;
};
security.acme = {
acceptTerms = true;
defaults.email = acmeEmail;
};
services = {
2024-05-24 19:28:13 -04:00
fail2ban.enable = true;
nginx = {
enable = true;
2024-06-07 13:14:34 -04:00
recommendedGzipSettings = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
2024-06-07 13:14:34 -04:00
virtualHosts = {
"music.${domain}" = {
enableACME = true;
forceSSL = true;
2024-06-07 13:14:34 -04:00
locations."/" = {
proxyPass = "http://127.0.0.1:4533";
proxyWebsockets = true;
2024-06-07 13:14:34 -04:00
extraConfig = ''
proxy_buffering off;
'';
};
};
2024-06-07 13:14:34 -04:00
"news.${domain}" = {
enableACME = true;
forceSSL = true;
2024-06-07 13:14:34 -04:00
locations."/" = {
proxyPass = "http://127.0.0.1:${toString config.alyraffauf.containers.oci.freshRSS.port}";
proxyWebsockets = true; # needed if you need to use WebSocket
2024-06-07 13:14:34 -04:00
extraConfig = ''
proxy_buffering off;
proxy_redirect off;
# Forward the Authorization header for the Google Reader API.
proxy_pass_header Authorization;
proxy_set_header Authorization $http_authorization;
'';
};
};
2024-06-07 13:14:34 -04:00
"nixcache.${domain}" = {
enableACME = true;
forceSSL = true;
2024-06-07 13:14:34 -04:00
locations."/".proxyPass = "http://${config.services.nix-serve.bindAddress}:${
toString config.services.nix-serve.port
}";
};
2024-06-07 13:14:34 -04:00
"plex.${domain}" = {
enableACME = true;
forceSSL = true;
2024-06-07 13:14:34 -04:00
locations."/" = {
proxyPass = "http://127.0.0.1:${toString config.alyraffauf.containers.oci.plexMediaServer.port}";
proxyWebsockets = true;
2024-06-07 13:14:34 -04:00
extraConfig = ''
proxy_buffering off;
'';
};
};
2024-06-07 13:14:34 -04:00
"podcasts.${domain}" = {
enableACME = true;
forceSSL = true;
2024-06-07 13:14:34 -04:00
locations."/" = {
proxyPass = "http://127.0.0.1:${toString config.alyraffauf.containers.oci.audiobookshelf.port}";
2024-06-07 13:14:34 -04:00
extraConfig = ''
client_max_body_size 500M;
proxy_buffering off;
proxy_redirect http:// https://;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Connection "upgrade";
proxy_set_header Upgrade $http_upgrade;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
'';
};
};
};
};
samba = {
enable = true;
openFirewall = true;
securityType = "user";
shares = {
Media = {
2024-06-07 13:14:34 -04:00
browseable = "yes";
comment = "Media @ ${hostName}";
path = mediaDirectory;
"read only" = "no";
"guest ok" = "yes";
"create mask" = "0755";
"directory mask" = "0755";
};
Archive = {
2024-06-07 13:14:34 -04:00
browseable = "yes";
comment = "Archive @ ${hostName}";
path = archiveDirectory;
"create mask" = "0755";
"directory mask" = "0755";
2024-06-07 13:14:34 -04:00
"guest ok" = "yes";
"read only" = "no";
};
};
};
samba-wsdd = {
enable = true;
openFirewall = true;
};
};
alyraffauf = {
apps = {
nicotine-plus.enable = true;
podman.enable = true;
steam.enable = true;
virt-manager.enable = true;
};
base = {
enable = true;
zramSwap.size = 100;
};
containers = {
nixos.navidrome.enable = true;
oci = {
audiobookshelf.enable = true;
freshRSS.enable = true;
plexMediaServer.enable = true;
transmission.enable = true;
};
};
desktop = {
enable = true;
greetd = {
enable = true;
autologin = {
enable = true;
user = "aly";
};
};
hyprland.enable = true;
};
users = {
aly = {
enable = true;
password = "$y$j9T$SHPShqI2IpRE101Ey2ry/0$0mhW1f9LbVY02ifhJlP9XVImge9HOpf23s9i1JFLIt9";
};
dustin = {
enable = true;
password = "$y$j9T$3mMCBnUQ.xjuPIbSof7w0.$fPtRGblPRSwRLj7TFqk1nzuNQk2oVlgvb/bE47sghl.";
};
};
services = {
binaryCache.enable = true;
ollama = {
enable = true;
gpu = "amd";
listenAddress = "0.0.0.0:11434";
};
syncthing = {
enable = true;
syncMusic = true;
musicPath = "${mediaDirectory}/Music";
};
tailscale.enable = true;
};
};
}