feat(services): add and enable trok module

This commit is contained in:
tux
2026-09-07 20:39:39 +05:30
parent ea526e6f88
commit 884dd188c3
6 changed files with 86 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
{ config, ... }:
{ inputs, config, ... }:
{
flake.modules.nixos.alpha =
{
@@ -7,12 +7,17 @@
...
}@innerArgs:
{
imports = with config.flake.modules.nixos; [
boot
networking
virtualisation
services
];
imports =
with config.flake.modules.nixos;
[
boot
networking
virtualisation
services
]
++ [
inputs.trok.nixosModules.default
];
tnix = {
boot = {
@@ -55,6 +60,10 @@
enable = true;
environmentFile = innerArgs.config.sops.secrets."mediaflow-proxy".path;
};
trok = {
enable = true;
};
};
virtualisation = {