diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..0a90a63 --- /dev/null +++ b/flake.nix @@ -0,0 +1,16 @@ +{ + inputs.nixpkgs.url = "github:NixOS/nixpkgs/22.11"; + + outputs = { nixpkgs, ... }: { + nixosConfigurations = { + xeon01 = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ ./xeon01/configuration.nix ]; + }; + xeon07 = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ ./xeon07/configuration.nix ]; + }; + }; + }; +}