{ config, lib, home-manager, ... }: { imports = [ ../common.nix ../../disko/drive-simple.nix ]; config = { zramSwap = { enable = true; algorithm = "zstd"; memoryPercent = 50; # Creates ~16GB of compressed swap space }; monorepo = { vars.device = "/dev/nvme0n1"; profiles = { server.enable = false; cuda.enable = true; workstation.enable = true; }; }; }; }