feat: moar nix
This commit is contained in:
parent
7e3bf4d6f3
commit
2025eb74a4
23 changed files with 1408 additions and 15 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue