Compare commits

..

No commits in common. "9e0a1a6d6ba885f43a055933dc585e70668a7f66" and "cae20098269d5fea86b69e605b47a24138a5f4c5" have entirely different histories.

7 changed files with 2 additions and 106 deletions

View file

@ -434,24 +434,6 @@
"type": "github"
}
},
"flake-utils_7": {
"inputs": {
"systems": "systems_2"
},
"locked": {
"lastModified": 1694529238,
"narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "ff7b65b44d01cf9ba6a71320833626af21126384",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"format-all": {
"flake": false,
"locked": {
@ -1060,8 +1042,7 @@
"retiolum": "retiolum",
"secrets": "secrets",
"sops-nix": "sops-nix",
"stylix": "stylix",
"taskshell": "taskshell"
"stylix": "stylix"
}
},
"rotate-text": {
@ -1186,42 +1167,6 @@
"type": "github"
}
},
"systems_2": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"taskshell": {
"inputs": {
"flake-utils": "flake-utils_7",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1700120351,
"narHash": "sha256-yXT05+0/2P3ld0cG9Zd6Pg32WowIh1l97b4fP72Jl0s=",
"owner": "mrvandalo",
"repo": "taskshell",
"rev": "f4b8a0068e79ca8671f3d4a79e6f3e1ab18f9aa6",
"type": "github"
},
"original": {
"owner": "mrvandalo",
"repo": "taskshell",
"type": "github"
}
},
"ts-fold": {
"flake": false,
"locked": {

View file

@ -76,10 +76,6 @@
#inputs.nixpkgs.follows = "nixpkgs";
#inputs.home-manager.follows = "home-manager";
};
taskshell = {
url = "github:mrvandalo/taskshell";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
@ -108,7 +104,6 @@
, secrets
, sops-nix
, stylix
, taskshell
}:
let
system = "x86_64-linux";
@ -146,7 +141,6 @@
landingpage = landingpage.packages.${system}.plain;
trilium-server = nixpkgs-unstable.legacyPackages.${system}.trilium-server;
kmonad = kmonad.packages.${system}.kmonad;
tasksh = taskshell.packages.${system}.tasksh;
})
(import ./nixos/pkgs)
];

View file

@ -16,7 +16,7 @@ in
google = {
home = "${homeFolder}/google-browser";
homeBackup = "${backupFolder}/google-browser";
gpu = false;
gpu = true;
};
finance = {
home = "${homeFolder}/finance-browser";

View file

@ -24,9 +24,6 @@ let
"sync.robi" = hosts.robi;
"transmission.robi" = hosts.robi;
"transmission2.robi" = hosts.robi;
"sonarr.robi" = hosts.robi;
"radarr.robi" = hosts.robi;
"tadarr.robi" = hosts.robi;
# pepe
"grafana.pepe" = hosts.pepe;
"loki.pepe" = hosts.pepe;

View file

@ -122,7 +122,6 @@ in
emoji-picker
gojq
pureref
steam-run

View file

@ -33,7 +33,6 @@
./media-syncthing.nix
./media-transmission.nix
./media-transmission2.nix
./media-arr.nix
./social-jitsi.nix

View file

@ -1,38 +0,0 @@
{ config, ... }:
{
services.sonarr = {
enable = true;
group = "media";
user = "media";
};
services.radarr = {
enable = true;
group = "media";
user = "media";
};
services.nginx.virtualHosts = {
"radarr.${config.networking.hostName}.private" = {
extraConfig = ''
allow ${config.tinc.private.subnet};
deny all;
'';
locations."/" = {
proxyPass = "http://localhost:7878";
proxyWebsockets = true;
};
};
"sonarr.${config.networking.hostName}.private" = {
extraConfig = ''
allow ${config.tinc.private.subnet};
deny all;
'';
locations."/" = {
proxyPass = "http://localhost:8989";
proxyWebsockets = true;
};
};
};
}