diff --git a/flake-nixos.nix b/flake-nixos.nix new file mode 100644 index 0000000..7734c0d --- /dev/null +++ b/flake-nixos.nix @@ -0,0 +1,10 @@ +{ + inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; + + outputs = { self, nixpkgs }: { + nixosConfigurations.bridge = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ ./configuration.nix ]; + }; + }; +}