This commit is contained in:
@@ -1,5 +1,10 @@
|
|||||||
{pkgs, ...}: {
|
{
|
||||||
home.packages = [
|
pkgs,
|
||||||
|
lib,
|
||||||
|
device,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
home.packages = lib.optionals (device.is "ryu") [
|
||||||
pkgs.fluffychat
|
pkgs.fluffychat
|
||||||
pkgs.fractal
|
pkgs.fractal
|
||||||
# pkgs.quaternion
|
# pkgs.quaternion
|
||||||
|
|||||||
@@ -4,5 +4,5 @@
|
|||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
home.packages = lib.optionals (device.name != "shiro") [pkgs.blobdrop];
|
home.packages = lib.optionals (device.name == "ryu") [pkgs.blobdrop];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
{...}: {
|
{...}: {
|
||||||
services = {
|
services = {
|
||||||
atticd = {
|
atticd = {
|
||||||
enable = false;
|
enable = true;
|
||||||
listen = "/run/attic.sock";
|
listen = "/run/attic/attic.sock";
|
||||||
};
|
};
|
||||||
caddy = {
|
caddy = {
|
||||||
virtualHosts."cache.darksailor.dev".extraConfig = ''
|
virtualHosts."cache.darksailor.dev".extraConfig = ''
|
||||||
reverse_proxy /run/attic.sock {
|
reverse_proxy /run/attic/attic.sock {
|
||||||
transport http {
|
transport http {
|
||||||
protocol = "fd"
|
protocol = "fd"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,30 +1,31 @@
|
|||||||
{...}: {
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./games
|
./attic.nix
|
||||||
# ./headscale.nix
|
|
||||||
./llms.nix
|
|
||||||
./monitoring.nix
|
|
||||||
# ./paperless.nix
|
|
||||||
./navidrome.nix
|
|
||||||
./shitpost.nix
|
|
||||||
./atuin.nix
|
./atuin.nix
|
||||||
./authelia.nix
|
./authelia.nix
|
||||||
./caddy.nix
|
./caddy.nix
|
||||||
./excalidraw.nix
|
./excalidraw.nix
|
||||||
./fail2ban.nix
|
./fail2ban.nix
|
||||||
./flaresolverr.nix
|
./flaresolverr.nix
|
||||||
|
./games
|
||||||
./gitea.nix
|
./gitea.nix
|
||||||
./homepage.nix
|
./homepage.nix
|
||||||
./immich.nix
|
./immich.nix
|
||||||
|
./kellnr.nix
|
||||||
./lldap.nix
|
./lldap.nix
|
||||||
|
./llms.nix
|
||||||
|
./matrix
|
||||||
|
./monitoring.nix
|
||||||
|
./navidrome.nix
|
||||||
./nextcloud.nix
|
./nextcloud.nix
|
||||||
./openssh.nix
|
./openssh.nix
|
||||||
./prowlarr.nix
|
./prowlarr.nix
|
||||||
./resolved.nix
|
./resolved.nix
|
||||||
./searxng.nix
|
./searxng.nix
|
||||||
|
./shitpost.nix
|
||||||
./tailscale.nix
|
./tailscale.nix
|
||||||
./kellnr.nix
|
# ./headscale.nix
|
||||||
./matrix
|
# ./paperless.nix
|
||||||
];
|
];
|
||||||
services = {
|
services = {
|
||||||
nix-serve = {
|
nix-serve = {
|
||||||
|
|||||||
Reference in New Issue
Block a user