Compare commits

..

No commits in common. "485b1f6b330af43fc13e2cef4b78423b4a8cc229" and "84b014fdaccc0f5e999390d2b4f69016be746991" have entirely different histories.

3 changed files with 13 additions and 37 deletions

26
flake.lock generated
View File

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1725703823, "lastModified": 1720042825,
"narHash": "sha256-tDgM4d8mLK0Hd6YMB2w1BqMto1XBXADOzPEaLl10VI4=", "narHash": "sha256-A0vrUB6x82/jvf17qPCpxaM+ulJnD8YZwH9Ci0BsAzE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "208df2e558b73b6a1f0faec98493cb59a25f62ba", "rev": "e1391fb22e18a36f57e6999c7a9f966dc80ac073",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -24,7 +24,7 @@
"local-unstable": { "local-unstable": {
"locked": { "locked": {
"lastModified": 0, "lastModified": 0,
"narHash": "sha256-xGb70My2Qaz8TBb1Qi8cG28r7QgEMaUgKmluvFLL3n0=", "narHash": "sha256-PARdSJzALMcRaXMHS/dZaJ+NDRQBvAhhPV4Bhlbh9gY=",
"path": "/home/giulio/dev/nixpkgs", "path": "/home/giulio/dev/nixpkgs",
"type": "path" "type": "path"
}, },
@ -35,11 +35,11 @@
}, },
"nixos-unstable": { "nixos-unstable": {
"locked": { "locked": {
"lastModified": 1725916572, "lastModified": 1721163745,
"narHash": "sha256-Bi1GF5GReoM0EZjCMVyULF/6ShGUF04sukiC55CrIiI=", "narHash": "sha256-YrMzZTjGJk+giMTT+FxOlumSj+8Ph84REHG0dvr0u1Y=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d10b2b7ea8faa99794503aa6ab421ad1ef84faf0", "rev": "fd29c411f73776b4a10c917e17f25ad0a942173b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -51,11 +51,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1725907616, "lastModified": 1721162132,
"narHash": "sha256-yd/OA4gqu8Z9bwrXYi4l4GMZlGm8TVDhgdMZ18xoDmg=", "narHash": "sha256-kH2unTqd/LlqG1NGbuUlRkDmXwCf80PNLNCjO3acQqI=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "bb41063b61dbfbabd499bb516ac06ab61a1f9012", "rev": "265595f550a572703d10a9db94a9ded793f21dfc",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -73,11 +73,11 @@
"utils": "utils" "utils": "utils"
}, },
"locked": { "locked": {
"lastModified": 1725026322, "lastModified": 1720463530,
"narHash": "sha256-iZ0dDH4ORZX7htqIxVLh/Z1qbrYSXChKNpTT3lYdOWw=", "narHash": "sha256-oHFul4EmOfWVEuo7lbdjSZ6UAzRVOlYMyYj1H4ZTTLk=",
"owner": "icewind1991", "owner": "icewind1991",
"repo": "nvidia-patch-nixos", "repo": "nvidia-patch-nixos",
"rev": "ca48832c3b1bbfc87f3b734834643d59943d8c60", "rev": "2877c51b2b40a51a04c432dced00ee280fc932d2",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -46,7 +46,6 @@ in
./llm.nix ./llm.nix
# ./photoprism.nix # ./photoprism.nix
./sunshine.nix ./sunshine.nix
./jellyseer.nix
]; ];
architect = { architect = {

View File

@ -1,23 +0,0 @@
{ config, pkgs, ... }:
let
domain = "aumm-aumm.giugl.io";
in
{
services.jellyseerr = {
enable = true;
# package = pkgs.unstablePkgs.jellyseerr;
};
architect.vhost.${domain} = {
dnsInterfaces = [ "tailscale" ];
locations."/" = {
port = config.services.jellyseerr.port;
allowLan = true;
allow = [
config.architect.networks.tailscale.net
];
};
};
}