diff options
author | Preston Pan <preston@nullring.xyz> | 2025-01-29 14:11:40 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2025-01-29 14:11:40 -0800 |
commit | 7083deb773b9c12ef56da6a934f9f0daca95d8ba (patch) | |
tree | 5c3673c34cc7fb71c8a7e87a22081890ab59f538 /nix/systems | |
parent | 2a4a4e2c42257bb25789ec3be6bc5a88f0eab7b5 (diff) |
add affinity system
Diffstat (limited to 'nix/systems')
-rw-r--r-- | nix/systems/affinity/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/nix/systems/affinity/default.nix b/nix/systems/affinity/default.nix new file mode 100644 index 0000000..703103d --- /dev/null +++ b/nix/systems/affinity/default.nix @@ -0,0 +1,13 @@ +{ config, lib, ... }: +{ + imports = [ + ../../modules/default.nix + ]; + config.monorepo = { + profiles = { + server.enable = true; + cuda.enable = true; + }; + vars.hostName = "affinity"; + }; +} |