feat: initial minimal setup

This commit is contained in:
Ryan Hamamura
2026-04-20 19:03:27 -10:00
commit 8f546ed840
7 changed files with 341 additions and 0 deletions

8
hardware.nix Normal file
View File

@@ -0,0 +1,8 @@
{ self, inputs, ... }: {
flake.nixosModules.fioHardware = { config, lib, pkgs, modulesPath, ... }: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
};
}