From 1154275b704210cf6f28a6df1feeda513c37d215 Mon Sep 17 00:00:00 2001
From: Manuel Thalmann <m@nuth.ch>
Date: Fri, 1 Dec 2023 12:29:39 +0100
Subject: [PATCH] Add a configuration for flakes

---
 flake.nix | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 flake.nix

diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..573676c
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,14 @@
+{
+    description = "NixOS Machine Configurations by manuth";
+
+    inputs = {
+        nixpkgs.url = "nixpkgs/nixos-unstable";
+    };
+
+    outputs = { self, nixpkgs }: 
+    let
+        system = import ./system.nix;
+    in {
+        nixosConfigurations.manu-surface = system "manu-surface" {};
+    };
+}