flake-parts: rename lib' to conf

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2024-05-27 20:07:28 +05:30
parent 29acfc513e
commit c1c4714fa2
20 changed files with 40 additions and 40 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, inputs, lib', ... }:
{ config, pkgs, inputs, conf, ... }:
{
systemd.services.filehost = {
enable = true;
@@ -7,7 +7,7 @@
Type = "simple";
Environment = [
"TITLE=nattofiles"
"USER_URL=https://f.${lib'.network.addresses.domain.natto}"
"USER_URL=https://f.${conf.network.addresses.domain.natto}"
"ROCKET_LIMITS={file=\"512MB\",data-form=\"512MB\"}"
"ROCKET_LOG_LEVEL=debug"
"ROCKET_ADDRESS=0.0.0.0"

View File

@@ -1,4 +1,4 @@
{ config, pkgs, lib', ... }:
{ config, pkgs, conf, ... }:
{
services = {
gitea = rec {
@@ -13,7 +13,7 @@
mailerPasswordFile = "/var/secrets/giteamailer.pass";
settings =
let
domain = lib'.network.addresses.domain.natto;
domain = conf.network.addresses.domain.natto;
in
{
server = rec {