refactor(nix): rename service namespace

This commit is contained in:
tux
2026-09-07 19:09:38 +05:30
parent e451f17df0
commit 3cceda5835
2 changed files with 3 additions and 3 deletions

View File

@@ -90,7 +90,7 @@ trok = {
inputs.trok.nixosModules.default inputs.trok.nixosModules.default
]; ];
tux.services.trok = { tnix.services.trok = {
enable = true; enable = true;
host = "0.0.0.0"; host = "0.0.0.0";
port = 1337; port = 1337;

View File

@@ -5,9 +5,9 @@
... ...
}: }:
with lib; let with lib; let
cfg = config.tux.services.trok; cfg = config.services.trok;
in { in {
options.tux.services.trok = { options.services.trok = {
enable = mkEnableOption "Enable trok"; enable = mkEnableOption "Enable trok";
host = mkOption { host = mkOption {