summaryrefslogtreecommitdiff
path: root/nix/systems/affinity/default.nix
blob: 33d6bc65f483ff880bedeb59146effc087aa750b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, lib, home-manager, ... }:
{
  imports = [
    ../common.nix
    ../../disko/drive-simple.nix
  ];
  config = {
    monorepo = {
      vars.device = "/dev/nvme0n1";
      profiles = {
        cuda.enable = true;
        workstation.enable = true;
      };
    };
  };
}