Compare commits

..

2 Commits

Author SHA1 Message Date
Adrian Gunnar Lauterer 2e2a8d12a9 add truenas jellyfin to routes 2024-06-16 16:50:10 +02:00
Adrian Gunnar Lauterer 6293fd1ca4 packages to home full
added firefox
2024-06-16 12:22:31 +02:00
3 changed files with 28 additions and 16 deletions

View File

@ -12,25 +12,25 @@
background="000000"; background="000000";
regular0="2e3436"; regular0="2e3436";
regular1="cc0000"; regular1="cc0000";
regular2="c4e9a06"; regular2="c4e9a0";
regular3="cc4a000"; regular3="cc4a00";
regular4="c3465a4"; regular4="c3465a";
regular5="c75507b"; regular5="c75507";
regular6="c06989a"; regular6="c06989";
regular7="cd3d7cf"; regular7="cd3d7c";
bright0="555753"; bright0="555753";
bright1="5ef2929"; bright1="5ef292";
bright2="58ae234"; bright2="58ae23";
bright3="5fce94f"; bright3="5fce94";
bright4="5729fcf"; bright4="5729fc";
bright5="5ad7fa8"; bright5="5ad7fa";
bright6="534e2e2"; bright6="534e2e";
bright7="5eeeeec"; bright7="5eeeee";
}; };
main = { main = {
term = "xterm-256color"; term = "xterm-256color";
font = "0xproto:size=16"; font = "0xproto:size=12";
dpi-aware = "yes"; #dpi-aware = "yes";
}; };
mouse = { mouse = {
hide-when-typing = "yes"; hide-when-typing = "yes";

View File

@ -6,6 +6,9 @@
./sway.nix ./sway.nix
]; ];
home.packages = with pkgs; [
firefox
gimp
];
} }

View File

@ -30,6 +30,15 @@
basicAuthFile = config.sops.secrets."nginx/defaultpass".path; basicAuthFile = config.sops.secrets."nginx/defaultpass".path;
}; };
virtualHosts."film.lauterer.it" = {
forceSSL = true;
useACMEHost = config.networking.domain;
locations."/" = {
proxyWebsockets = true;
proxyPass = "http://100.104.182.48:8096";
};
};
virtualHosts."home.lauterer.it" = { virtualHosts."home.lauterer.it" = {
forceSSL = true; forceSSL = true;
useACMEHost = config.networking.domain; useACMEHost = config.networking.domain;