From 3f66e3018146238458c768e6197e2e968b254281 Mon Sep 17 00:00:00 2001 From: aaron Date: Sun, 16 Nov 2025 16:05:33 +0100 Subject: [PATCH] feat: add simple flake.nix file --- flake.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..bf738bd --- /dev/null +++ b/flake.nix @@ -0,0 +1,15 @@ +{ + description = "0x29a NixOS flake"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; + }; + + outputs = { self, nixpkgs, ... }@inputs: { + nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { + modules = [ + ./configuration.nix + ]; + }; + }; +}