Refactor common modules.

This commit is contained in:
2025-10-24 15:34:31 +01:00
parent e5cd9bd98e
commit 53ef2f6293
17 changed files with 262 additions and 219 deletions

10
common/cluster-tools.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
services.nomad.enable = false;
environment.systemPackages = with pkgs; [
nomad
wander
damon
];
}