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

View File

@@ -0,0 +1,7 @@
{ self, inputs, ... }: {
flake.nixosConfigurations.fio = inputs.nixpkgs.lib.nixosSystem {
modules = [
self.nixosModules.fioConfiguration
];
};
}