diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..278e247 --- /dev/null +++ b/flake.nix @@ -0,0 +1,21 @@ +{ + description = "System Configuration Flake"; + + inputs = { + nixpkgs = { + url = "github:NixOS/nixpkgs/nixos-unstable" + }; + }; + + outputs = { self, nixpkgs }: { + + nixosConfigurations = { + stitchynyan = nixpkgs.lib.nixosSystem { + system = "x86_64-linux" + modules = [ + ./configuration.nix + ]; + }; + }; + }; +}