Add fry
All checks were successful
Check Flake / check-flake (push) Successful in 1h22m48s

This commit is contained in:
2025-10-12 13:36:02 -07:00
parent cb1c4752ec
commit cf087b0e39
30 changed files with 207 additions and 98 deletions

12
machines/fry/default.nix Normal file
View File

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