From 3cceda583527797d14b876ba0bbe286a9957c961 Mon Sep 17 00:00:00 2001 From: tux Date: Mon, 7 Sep 2026 19:09:38 +0530 Subject: [PATCH] refactor(nix): rename service namespace --- README.md | 2 +- module.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 838b773..3e75918 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ trok = { inputs.trok.nixosModules.default ]; - tux.services.trok = { + tnix.services.trok = { enable = true; host = "0.0.0.0"; port = 1337; diff --git a/module.nix b/module.nix index 81a8c9f..74a284a 100644 --- a/module.nix +++ b/module.nix @@ -5,9 +5,9 @@ ... }: with lib; let - cfg = config.tux.services.trok; + cfg = config.services.trok; in { - options.tux.services.trok = { + options.services.trok = { enable = mkEnableOption "Enable trok"; host = mkOption {