aboutsummaryrefslogtreecommitdiff
path: root/nix/systems/affinity/default.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-02-08 03:19:30 -0800
committerPreston Pan <ret2pop@gmail.com>2025-02-08 03:19:30 -0800
commit504b765606f02b610d74d259ddf2c85292e1f6c0 (patch)
tree49908b9e9064b0f0fc8bf8070e8cf5cdf547e3a6 /nix/systems/affinity/default.nix
parent56faa5e9caf4408c2c4d6df50287c3b1c9e6c1b4 (diff)
add nix-topology; make configuration options less bad; restructure project a bit; add flake system looping
Diffstat (limited to 'nix/systems/affinity/default.nix')
-rw-r--r--nix/systems/affinity/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nix/systems/affinity/default.nix b/nix/systems/affinity/default.nix
index 606d934..7f1f29d 100644
--- a/nix/systems/affinity/default.nix
+++ b/nix/systems/affinity/default.nix
@@ -2,16 +2,16 @@
{
imports = [
../../modules/default.nix
- ../../modules/nvme-simple.nix
+ ../../disko/nvme-simple.nix
../home.nix
];
config = {
monorepo = {
profiles = {
- server.enable = true;
+ server.enable = false;
cuda.enable = true;
+ workstation.enable = true;
};
- vars.hostName = "affinity";
};
};
}