diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..2be2d16 --- /dev/null +++ b/flake.nix @@ -0,0 +1,8 @@ +{ + outputs = { self, nixpkgs }: { + nixosConfigurations.sombrero = nixpkgs.lib.nixosSystem { + system = "aarch64-linux"; + modules = [ ./hosts/sombrero/configuration.nix ]; + }; + }; +}