nix-files/hosts/modules/roles/default.nix

20 lines
350 B
Nix
Raw Normal View History

{ config, lib, ... }:
{
imports = [
./build-machine.nix
./client
2023-05-10 21:23:42 +00:00
./dev-machine.nix
./handheld.nix
./pc.nix
];
fileSystems."/tmp" = lib.mkIf (config.sane.roles.build-machine.enable || config.sane.roles.dev-machine) {
device = "none";
fsType = "tmpfs";
options = [
"mode=777"
"defaults"
];
};
}