Compare commits

..

5 commits

Author SHA1 Message Date
2eb00aa92b
refactor: hjemify foot & keepassxc
Some checks failed
/ test (push) Failing after 1s
2025-02-10 17:55:19 +01:00
fd52404b93
chore: update nysh
Some checks failed
/ test (push) Failing after 2s
2025-02-10 15:30:38 +01:00
d878a12f5b
feat: add hass ip 2025-02-10 15:30:10 +01:00
e9efefd7d2
feat: add meta for tailscale ip and use it in headsale ACL parameters
Some checks failed
/ test (push) Failing after 1s
2025-02-08 12:47:03 +01:00
7c247098cb
chore: shuffle forgejo files in raptus around 2025-02-05 16:56:30 +01:00
7 changed files with 24 additions and 8 deletions

8
flake.lock generated
View file

@ -325,11 +325,11 @@
"quickshell": "quickshell" "quickshell": "quickshell"
}, },
"locked": { "locked": {
"lastModified": 1738782767, "lastModified": 1739197721,
"narHash": "sha256-768XlaosBb5MX4QhfaOkWbNISoFDA+YUj/C96c6KlQ8=", "narHash": "sha256-+EYoZfeHycIH52SJMEkGtmsTddXa8dW06aDJCVg+lcI=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "51f3bdd7cb2330c4863ad81896ca20ce09e5cf01", "rev": "603e1c09b39ee57f6ea94f45b117360736816358",
"revCount": 105, "revCount": 106,
"type": "git", "type": "git",
"url": "https://git.ccnlc.eu/nydragon/nysh.git" "url": "https://git.ccnlc.eu/nydragon/nysh.git"
}, },

View file

@ -13,8 +13,7 @@ in
imports = [ imports = [
(modulesPath + "/profiles/qemu-guest.nix") (modulesPath + "/profiles/qemu-guest.nix")
./disk-config.nix ./disk-config.nix
./forgejo.nix ./forgejo
./forgejo-runner.nix
./headscale ./headscale
./fail2ban.nix ./fail2ban.nix
]; ];

View file

@ -4,6 +4,10 @@ let
sshPort = 2222; sshPort = 2222;
in in
{ {
imports = [
./runner.nix
];
systemd.tmpfiles.rules = systemd.tmpfiles.rules =
let let
# Disallow crawlers from indexing this site. # Disallow crawlers from indexing this site.

View file

@ -2,6 +2,7 @@
pkgs, pkgs,
options, options,
lib, lib,
self,
... ...
}: }:
let let
@ -13,6 +14,9 @@ let
action = "accept"; action = "accept";
inherit src dst users; inherit src dst users;
}; };
shanMeta = self.nixosConfigurations.shan.config.modules.meta;
homeAIp = "100.64.0.9";
in in
{ {
services.headscale.settings.policy.path = pkgs.writeTextFile { services.headscale.settings.policy.path = pkgs.writeTextFile {
@ -39,7 +43,7 @@ in
[ [
"tag:guest" "tag:guest"
] ]
[ "100.64.0.4:443" ] [ "${shanMeta.tailscale.ip}:443" "${homeAIp}:80" ]
) )
]; ];

View file

@ -28,6 +28,9 @@
}; };
modules = { modules = {
meta = {
tailscale.ip = "100.64.0.4";
};
system.networking.bluetooth.enable = true; system.networking.bluetooth.enable = true;
container = { container = {
kitchenowl = { kitchenowl = {

View file

@ -1,7 +1,7 @@
{ lib, ... }: { lib, ... }:
let let
inherit (lib) mkOption stringLength; inherit (lib) mkOption stringLength;
inherit (lib.types) str strMatching; inherit (lib.types) str strMatching nullOr;
validateUserName = validateUserName =
x: x:
@ -24,5 +24,11 @@ in
# Should handle multiple users one day? maybe... # Should handle multiple users one day? maybe...
description = "This system's primary user."; description = "This system's primary user.";
}; };
tailscale = {
ip = mkOption {
default = null;
type = nullOr str;
};
};
}; };
} }