feat(services): add and enable tfolio module

This commit is contained in:
tux
2026-09-08 05:48:24 +05:30
parent 9f190436e9
commit 30929f3a7b
4 changed files with 123 additions and 22 deletions

View File

@@ -8,6 +8,7 @@
tnvim = inputs.tnvim.packages.${prev.stdenv.hostPlatform.system}.default;
tshell = inputs.tshell.packages.${prev.stdenv.hostPlatform.system}.default;
trok = inputs.trok.packages.${prev.stdenv.hostPlatform.system}.default;
tfolio = inputs.tfolio.packages.${prev.stdenv.hostPlatform.system}.default;
cyber-tux = inputs.cyber-tux.packages.${prev.stdenv.hostPlatform.system}.default;
wezterm-git = inputs.wezterm-flake.packages.${prev.stdenv.hostPlatform.system}.default;
hyprland-git = inputs.hyprland.packages.${prev.stdenv.hostPlatform.system};

View File

@@ -17,6 +17,7 @@
]
++ [
inputs.trok.nixosModules.default
inputs.tfolio.nixosModules.default
];
tnix = {
@@ -39,7 +40,12 @@
};
networking = {
openssh.enable = true;
openssh = {
enable = true;
ports = [
23
];
};
netbird-client.enable = true;
};
@@ -125,6 +131,8 @@
firewall.enable = false;
};
services.tfolio.enable = true;
system.stateVersion = "26.05";
};
}