iceshrimp??

This commit is contained in:
41666 2024-03-25 23:51:49 -04:00
parent 8016e3eeaa
commit 43da93ae72
2 changed files with 11 additions and 3 deletions

View file

@ -35,7 +35,10 @@
nixos-generators.url = "github:nix-community/nixos-generators";
# Iceshrimpy
iceshrimp.url = "git+https://iceshrimp.dev/iceshrimp/packaging";
iceshrimp = {
url = "git+https://iceshrimp.dev/iceshrimp/packaging";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
# Self
noe-sh = {

View file

@ -1,19 +1,24 @@
{ inputs, ... }: {
{ inputs, config, ... }: {
imports = [
../../templates/proxmox-lxc.nix
../../server.nix
../../features/dns-cache.nix
../../features/telemetry
inputs.iceshrimp.nixosModules.iceshrimp
inputs.iceshrimp.nixosModules.iceshrimp {}
];
networking.hostName = "porcelain-doll-repair";
system.stateVersion = "24.05";
nixpkgs.hostPlatform = "x86_64-linux";
sops.secrets.db_password = {
sopsFile = ../../../secrets/porcelain-doll-repair/default.yaml;
};
services.iceshrimp = {
enable = true;
url = "https://porcelain.doll.repair";
createDb = true;
dbPasswordFile = config.sops.secrets.db_password.path;
};
}