nix-config/hosts/framework-work/default.nix

21 lines
298 B
HolyC

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