nix-config/hosts/framework-work/default.nix
2026-05-30 21:53:10 -07:00

22 lines
322 B
HolyC

{ ... }:
{
imports = [
../../configuration.nix
./hardware-configuration.nix
./oneleet-agent.nix
];
networking.hostName = "framework-work";
fileSystems."/tmp" = {
device = "tmpfs";
fsType = "tmpfs";
options = [
"size=8G"
"mode=1777"
"nosuid"
"nodev"
];
};
}