Files
nix-config/machines/howl/default.nix
Zuckerberg 99ef62d31a
All checks were successful
Check Flake / check-flake (push) Successful in 1m21s
Fix unused vars
2026-02-11 23:12:00 -08:00

13 lines
188 B
Nix

{ lib, ... }:
{
imports = [
./hardware-configuration.nix
];
# don't use remote builders
nix.distributedBuilds = lib.mkForce false;
nix.gc.automatic = lib.mkForce false;
}