tyo0: move redlib to sin0
This commit is contained in:
parent
dbf012cdc2
commit
2721eaeecf
6 changed files with 28 additions and 3 deletions
|
@ -17,7 +17,6 @@
|
||||||
./services/murmur.nix
|
./services/murmur.nix
|
||||||
./services/ntfy.nix
|
./services/ntfy.nix
|
||||||
./services/prometheus.nix
|
./services/prometheus.nix
|
||||||
./services/redlib.nix
|
|
||||||
./services/vaultwarden.nix
|
./services/vaultwarden.nix
|
||||||
./services/wastebin.nix
|
./services/wastebin.nix
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
lib.ports = {
|
lib.ports = {
|
||||||
keycloak = 8010;
|
keycloak = 8010;
|
||||||
miniflux = 8020;
|
miniflux = 8020;
|
||||||
redlib = 8030;
|
|
||||||
vaultwarden = 8040;
|
vaultwarden = 8040;
|
||||||
wastebin = 8050;
|
wastebin = 8050;
|
||||||
|
|
||||||
|
|
16
hosts/vultr/sin0/anti-feature.nix
Normal file
16
hosts/vultr/sin0/anti-feature.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ lib, ... }:
|
||||||
|
{
|
||||||
|
nixpkgs.config = {
|
||||||
|
allowNonSource = false;
|
||||||
|
allowNonSourcePredicate =
|
||||||
|
pkg:
|
||||||
|
lib.elem (lib.getName pkg) [
|
||||||
|
];
|
||||||
|
|
||||||
|
allowUnfree = false;
|
||||||
|
allowUnfreePredicate = pkg: lib.elem (lib.getName pkg) [ ];
|
||||||
|
|
||||||
|
permittedInsecurePackages = [
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,6 +1,12 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [ ../../../nixos/profiles/sing-box-server ];
|
imports = [
|
||||||
|
./ports.nix
|
||||||
|
|
||||||
|
./services/redlib.nix
|
||||||
|
|
||||||
|
../../../nixos/profiles/sing-box-server
|
||||||
|
];
|
||||||
|
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
|
|
||||||
|
|
5
hosts/vultr/sin0/ports.nix
Normal file
5
hosts/vultr/sin0/ports.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
lib.ports = {
|
||||||
|
redlib = 8010;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue