home: add ooknet.org forgejo ssh configuration

This commit is contained in:
ooks-io 2024-11-01 12:43:24 +11:00
parent 331a15f0e6
commit ba30586443
7 changed files with 101 additions and 4 deletions

View file

@ -10,9 +10,10 @@ in {
inherit withSystem;
system = "x86_64-linux";
hostname = "ooknode";
domain = "ooknet.org";
type = "vm";
profile = "linode";
services = ["website"];
services = ["website" "forgejo"];
};
};
}

View file

@ -89,6 +89,7 @@
type,
profile,
services,
domain ? "",
additionalModules ? [],
specialArgs ? {},
}:
@ -98,7 +99,7 @@
additionalModules = concatLists [
(singleton {
ooknet.server = {
inherit services;
inherit domain services;
};
})
core