From e79ab185f181bc65131a8d3f01cc033b992a368d Mon Sep 17 00:00:00 2001
From: Julien Malka <julien@malka.sh>
Date: Thu, 6 Apr 2023 22:14:45 +0200
Subject: [PATCH] feat: simplified flake.nix

---
 flake.nix | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/flake.nix b/flake.nix
index 7bbcb66..fbf14d0 100644
--- a/flake.nix
+++ b/flake.nix
@@ -60,10 +60,8 @@
 
   };
 
-  outputs = { self, home-manager, nixpkgs, unstable, deploy-rs, sops-nix, nixos-apple-silicon, ... }@inputs:
+  outputs = { self, nixpkgs, deploy-rs, ... }@inputs:
     let
-      pkgs = import nixpkgs { system = "x86_64-linux"; };
-      pkgsrpi = import nixpkgs { system = "aarch64-linux"; };
       lib = nixpkgs.lib.extend (import ./lib inputs);
       machines_plats = lib.mapAttrsToList (name: value: value.arch) lib.luj.machines;
 
@@ -74,7 +72,6 @@
         })
         machines_plats);
     in
-    with lib;
     rec {
       nixosModules = builtins.listToAttrs (map
         (x: {