From 2e28ac1a7b26aad4335ed12c1b64f448496b6d5b Mon Sep 17 00:00:00 2001 From: Henry Webster Date: Sun, 19 Jul 2026 08:39:13 -0500 Subject: Initial flake --- flake.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..e713cb2 --- /dev/null +++ b/flake.nix @@ -0,0 +1,18 @@ +{ + description = "hwebs' NixOS configuration"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-26.05"; + }; + + outputs = + { self, nixpkgs, ... }@inputs: + { + nixosConfigurations.kusanagi = nixpgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + ./configuration.nix + ]; + }; + }; +} -- cgit v1.3