From 04d3ced1f4bc2ad26e9ebc13ed199d579de10627 Mon Sep 17 00:00:00 2001
From: Julien Malka <julien.malka@me.com>
Date: Tue, 7 Dec 2021 13:52:53 +0100
Subject: [PATCH] Refactoring

---
 flake.nix | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/flake.nix b/flake.nix
index 1b00ba9..49297ba 100644
--- a/flake.nix
+++ b/flake.nix
@@ -14,14 +14,13 @@
       url = "github:JulienMalka/homepage";
       flake = false;
     };
-
-
   };
 
   outputs = { self, home-manager, nixpkgs, neovim-nightly-overlay, nur, ... }@inputs:
     let
       utils = import ./utils.nix { inherit nixpkgs home-manager inputs; };
-    in with utils;
+    in
+    with utils;
     {
       nixosModules = builtins.listToAttrs (map
         (x: {
@@ -33,8 +32,6 @@
       nixosConfigurations = builtins.mapAttrs (name: value: (mkMachine name value self.nixosModules)) (importConfig ./machines);
 
 
-
-
     };