iceshrimp??
This commit is contained in:
parent
8016e3eeaa
commit
43da93ae72
2 changed files with 11 additions and 3 deletions
|
@ -35,7 +35,10 @@
|
||||||
nixos-generators.url = "github:nix-community/nixos-generators";
|
nixos-generators.url = "github:nix-community/nixos-generators";
|
||||||
|
|
||||||
# Iceshrimpy
|
# Iceshrimpy
|
||||||
iceshrimp.url = "git+https://iceshrimp.dev/iceshrimp/packaging";
|
iceshrimp = {
|
||||||
|
url = "git+https://iceshrimp.dev/iceshrimp/packaging";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
};
|
||||||
|
|
||||||
# Self
|
# Self
|
||||||
noe-sh = {
|
noe-sh = {
|
||||||
|
|
|
@ -1,19 +1,24 @@
|
||||||
{ inputs, ... }: {
|
{ inputs, config, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
../../templates/proxmox-lxc.nix
|
../../templates/proxmox-lxc.nix
|
||||||
../../server.nix
|
../../server.nix
|
||||||
../../features/dns-cache.nix
|
../../features/dns-cache.nix
|
||||||
../../features/telemetry
|
../../features/telemetry
|
||||||
inputs.iceshrimp.nixosModules.iceshrimp
|
inputs.iceshrimp.nixosModules.iceshrimp {}
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.hostName = "porcelain-doll-repair";
|
networking.hostName = "porcelain-doll-repair";
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
nixpkgs.hostPlatform = "x86_64-linux";
|
nixpkgs.hostPlatform = "x86_64-linux";
|
||||||
|
|
||||||
|
sops.secrets.db_password = {
|
||||||
|
sopsFile = ../../../secrets/porcelain-doll-repair/default.yaml;
|
||||||
|
};
|
||||||
|
|
||||||
services.iceshrimp = {
|
services.iceshrimp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
url = "https://porcelain.doll.repair";
|
url = "https://porcelain.doll.repair";
|
||||||
createDb = true;
|
createDb = true;
|
||||||
|
dbPasswordFile = config.sops.secrets.db_password.path;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue