feat: moar nix

This commit is contained in:
nullishamy 2025-06-18 21:41:53 +01:00
parent 7e3bf4d6f3
commit 2025eb74a4
Signed by: amy
SSH key fingerprint: SHA256:WmV0uk6WgAQvDJlM8Ld4mFPHZo02CLXXP5VkwQ5xtyk
23 changed files with 1408 additions and 15 deletions

View file

@ -7,6 +7,8 @@
# Include the container-specific autogenerated configuration.
./lxd.nix
./services/opengist.nix
./services/kener.nix
#./services/upsnap.nix
];
networking = {
@ -22,6 +24,36 @@
vim
];
# services.upsnap = {
# enable = true;
# };
services.kener = {
enable = true;
};
# Would like to use my PG DB for this but the service just doesn't
# support DBs that are hosted outside of the Nix box
services.writefreely = {
enable = true;
host = "write.amy.mov";
database = {
type = "sqlite3";
};
admin = {
name = "amy";
};
settings = {
server = {
bind = "0.0.0.0";
port = 8123;
};
};
};
services.opengist = {
enable = true;
config = ./opengist.yml;