Compare commits
2 commits
7cba141859
...
e9efefd7d2
Author | SHA1 | Date | |
---|---|---|---|
e9efefd7d2 | |||
7c247098cb |
6 changed files with 19 additions and 4 deletions
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
|
@ -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.
|
|
@ -2,6 +2,7 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
options,
|
options,
|
||||||
lib,
|
lib,
|
||||||
|
self,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
|
@ -13,6 +14,8 @@ let
|
||||||
action = "accept";
|
action = "accept";
|
||||||
inherit src dst users;
|
inherit src dst users;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
shanMeta = self.nixosConfigurations.shan.config.modules.meta;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
services.headscale.settings.policy.path = pkgs.writeTextFile {
|
services.headscale.settings.policy.path = pkgs.writeTextFile {
|
||||||
|
@ -39,7 +42,7 @@ in
|
||||||
[
|
[
|
||||||
"tag:guest"
|
"tag:guest"
|
||||||
]
|
]
|
||||||
[ "100.64.0.4:443" ]
|
[ "${shanMeta.tailscale.ip}:443" ]
|
||||||
)
|
)
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
|
@ -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;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue