From 39740c6f9a4a9ba5655fe77c0613cc86478571cb Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 1 Jan 2026 17:25:13 -0600 Subject: Initial commit --- flake.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..0b4ace0 --- /dev/null +++ b/flake.nix @@ -0,0 +1,17 @@ +{ + description = "NixOS Flake Configuration"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11"; + }; + + outputs = { self, nixpkgs, ... }: { + nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + + modules = [ + ./configuration.nix + ]; + }; + }; +} -- cgit v1.2.3