Add z790prors

This commit is contained in:
2024-08-18 15:47:33 -07:00
commit e3ae14bd92
5 changed files with 237 additions and 0 deletions

15
flake.nix Normal file
View File

@@ -0,0 +1,15 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: {
nixosConfigurations.z790prors-nix = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./machines/z790prors/configuration.nix ];
};
};
}