Compare commits
4 Commits
e0506fc3e0
...
attic
| Author | SHA1 | Date | |
|---|---|---|---|
| 4c1ccd22ff | |||
| 70068bf0d9 | |||
| 165806ba2c | |||
| 76605c04b9 |
29
.gitea/workflows/build.yaml
Normal file
29
.gitea/workflows/build.yaml
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
name: build
|
||||||
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
build-sydpc:
|
||||||
|
runs-on: nixos
|
||||||
|
steps:
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: build sydpc
|
||||||
|
run: nix build -L .#nixosConfigurations.sydpc.config.system.build.toplevel
|
||||||
|
|
||||||
|
build-fruitbook:
|
||||||
|
runs-on: nixos
|
||||||
|
steps:
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: build fruitbook
|
||||||
|
run: nix build -L .#nixosConfigurations.fruitbook.config.system.build.toplevel
|
||||||
|
|
||||||
|
build-deertopia:
|
||||||
|
runs-on: nixos
|
||||||
|
steps:
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: build deertopia
|
||||||
|
run: nix build -L .#nixosConfigurations.deertopia.config.system.build.toplevel
|
||||||
@@ -49,6 +49,7 @@
|
|||||||
|
|
||||||
deertopia = {
|
deertopia = {
|
||||||
authelia.enable = true;
|
authelia.enable = true;
|
||||||
|
atticd.enable = true;
|
||||||
gitea.enable = true;
|
gitea.enable = true;
|
||||||
quiver.enable = true;
|
quiver.enable = true;
|
||||||
www.enable = true;
|
www.enable = true;
|
||||||
@@ -66,6 +67,7 @@
|
|||||||
# umurmur.enable = true;
|
# umurmur.enable = true;
|
||||||
murmur.enable = true;
|
murmur.enable = true;
|
||||||
anki-sync-server.enable = true;
|
anki-sync-server.enable = true;
|
||||||
|
vaultwarden.enable = true;
|
||||||
servarr = {
|
servarr = {
|
||||||
enable = true;
|
enable = true;
|
||||||
prowlarr.enable = true;
|
prowlarr.enable = true;
|
||||||
|
|||||||
40
modules/nixos/deertopia/atticd.nix
Normal file
40
modules/nixos/deertopia/atticd.nix
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
let cfg = config.sydnix.deertopia.atticd;
|
||||||
|
in {
|
||||||
|
options.sydnix.deertopia.atticd = {
|
||||||
|
enable = lib.mkEnableOption "Atticd";
|
||||||
|
port = lib.mkOption {
|
||||||
|
default = 8012;
|
||||||
|
type = lib.types.port;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# sudo atticd-atticadm make-token --sub msyds --validity '1 year' --pull 'msyds-*' --push 'msyds-*' --create-cache 'msyds-*' --configure-cache 'msyds-*'
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
sydnix.sops.secrets.atticd-environment-file = {
|
||||||
|
# owner = config.services.atticd.user;
|
||||||
|
# group = config.services.atticd.group;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.atticd = {
|
||||||
|
enable = true;
|
||||||
|
environmentFile =
|
||||||
|
config.sops.secrets.atticd-environment-file.path;
|
||||||
|
settings = {
|
||||||
|
api-endpoint = "https://attic.deertopia.net/";
|
||||||
|
listen = "[::]:${toString cfg.port}";
|
||||||
|
garbage-collection = {
|
||||||
|
default-retention-period = "3 months";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
sydnix.deertopia.nginx.vhosts."attic".vhost = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
locations."/".proxyPass =
|
||||||
|
"http://127.0.0.1:${toString cfg.port}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
45
modules/nixos/deertopia/vaultwarden.nix
Normal file
45
modules/nixos/deertopia/vaultwarden.nix
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
let cfg = config.sydnix.deertopia.vaultwarden;
|
||||||
|
in {
|
||||||
|
options.sydnix.deertopia.vaultwarden = {
|
||||||
|
enable = lib.mkEnableOption "Vaultwarden";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
services.vaultwarden = {
|
||||||
|
enable = true;
|
||||||
|
config = {
|
||||||
|
ROCKET_ADDRESS = "127.0.0.1";
|
||||||
|
ROCKET_PORT = 8222;
|
||||||
|
DOMAIN = "https://vault.deertopia.net";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
sydnix.impermanence.directories = [
|
||||||
|
"/var/backup/vaultwarden"
|
||||||
|
];
|
||||||
|
|
||||||
|
services.nginx.upstreams.vaultwarden.servers =
|
||||||
|
let port = toString config.services.vaultwarden.config.ROCKET_PORT;
|
||||||
|
in {
|
||||||
|
"127.0.0.1:${port}" = { };
|
||||||
|
};
|
||||||
|
|
||||||
|
sydnix.deertopia.nginx.vhosts."vault".vhost = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
locations = {
|
||||||
|
"/".proxyPass = "http://vaultwarden";
|
||||||
|
"= /notifications/anonymous-hub" = {
|
||||||
|
proxyPass = "http://vaultwarden";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
|
"= /notifications/hub" = {
|
||||||
|
proxyPass = "http://vaultwarden";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -41,17 +41,28 @@ in {
|
|||||||
url = "https://git.deertopia.net/";
|
url = "https://git.deertopia.net/";
|
||||||
tokenFile = token-file;
|
tokenFile = token-file;
|
||||||
labels = [ "nixos:host" ];
|
labels = [ "nixos:host" ];
|
||||||
|
hostPackages = with pkgs; [
|
||||||
|
bash
|
||||||
|
coreutils
|
||||||
|
curl
|
||||||
|
gawk
|
||||||
|
gitMinimal
|
||||||
|
gnused
|
||||||
|
nodejs
|
||||||
|
wget
|
||||||
|
nix
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Disable dynamic user so runner state persists via bind mount
|
# Disable dynamic user so runner state persists via bind mount
|
||||||
assertions = [{
|
assertions = [{
|
||||||
assertion = config.systemd.services.gitea-actions-runner-sydpc.enable;
|
assertion = config.systemd.services.gitea-actions-runner-sydpc.enable;
|
||||||
message = ''
|
message = ''
|
||||||
Expected systemd service 'gitea-actions-runner-sydpc' is not
|
Expected systemd service 'gitea-actions-runner-sydpc' is not
|
||||||
enabled — the gitea-actions-runner module may have changed
|
enabled — the gitea-actions-runner module may have changed
|
||||||
its naming scheme.
|
its naming scheme.
|
||||||
'';
|
'';
|
||||||
}];
|
}];
|
||||||
systemd.services.gitea-actions-runner-sydpc.serviceConfig.DynamicUser
|
systemd.services.gitea-actions-runner-sydpc.serviceConfig.DynamicUser
|
||||||
= lib.mkForce false;
|
= lib.mkForce false;
|
||||||
users.users.gitea-actions-runner = {
|
users.users.gitea-actions-runner = {
|
||||||
|
|||||||
@@ -70,6 +70,10 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
# O_O what the fuck did i write this for.... CONCERNING.
|
# O_O what the fuck did i write this for.... CONCERNING.
|
||||||
|
#
|
||||||
|
# oh because of these types of errors:
|
||||||
|
# Directory "/var/lib/private" already exists, but has mode 0755
|
||||||
|
# that is too permissive (0700 was requested), refusing.
|
||||||
systemd.tmpfiles.settings."10-varlibprivate" = {
|
systemd.tmpfiles.settings."10-varlibprivate" = {
|
||||||
"/var/lib/private" = {
|
"/var/lib/private" = {
|
||||||
z.group = "root";
|
z.group = "root";
|
||||||
@@ -78,6 +82,13 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Workaround for https://github.com/nix-community/impermanence/issues/254.
|
||||||
|
systemd.services."systemd-tmpfiles-resetup" = {
|
||||||
|
serviceConfig = {
|
||||||
|
RemainAfterExit = lib.mkForce false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Permit members of `cfg.persistGroupName` to read, write, and execute
|
# Permit members of `cfg.persistGroupName` to read, write, and execute
|
||||||
# /persist.
|
# /persist.
|
||||||
systemd.tmpfiles.settings."10-persist" = {
|
systemd.tmpfiles.settings."10-persist" = {
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user