From d25fe3dd4a0b52cda2d65e8b220c069159d09d97 Mon Sep 17 00:00:00 2001
From: meml0rz <meml0rz>
Date: Mon, 11 Nov 2024 23:59:52 +0100
Subject: [PATCH] kekl

---
 flake.nix | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/flake.nix b/flake.nix
index 7ec1ffa..13b396c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -9,7 +9,7 @@
             inputs.nixpkgs.follows = "nixpkgs";
         };
     };
-
+    
     outputs = { self, nixpkgs, nixpkgs-stable, ... }:
     let
         system = "x86_64-linux";
@@ -17,12 +17,13 @@
         pkgs = nixpkgs.legacyPackages.${system};
         pkgs-stable = nixpkgs-stable.legacyPackages.${system};
     in {
-    nixosConfigurations = {
-        poggers = lib.nixosSystem {
-            inherit system;
-            modules = [ ./configuration.nix ];
-            specialArgs = {
-                inherit pkgs-stable;
+        nixosConfigurations = {
+            poggers = lib.nixosSystem {
+                inherit system;
+                modules = [ ./configuration.nix ];
+                specialArgs = {
+                    inherit pkgs-stable;
+                };
             };
         };
     };