From e754de32526e1e048f6d706c797c3f94a899517b Mon Sep 17 00:00:00 2001
From: Emile <git@emile.space>
Date: Tue, 3 Dec 2024 21:51:22 +0100
Subject: (flake) remove the tmp master and microvm inputs

---
 nix/lib/flake-helper.nix | 5 -----
 1 file changed, 5 deletions(-)

(limited to 'nix/lib')

diff --git a/nix/lib/flake-helper.nix b/nix/lib/flake-helper.nix
index 5ba8d77..cac3a71 100644
--- a/nix/lib/flake-helper.nix
+++ b/nix/lib/flake-helper.nix
@@ -3,7 +3,6 @@
   agenix,
   nixpkgs,
   nixpkgs-unstable,
-  nixpkgs-master,
   deploy-rs,
   home-manager,
   darwin,
@@ -22,8 +21,6 @@ rec {
       group ? null,
       modules ? [ ],
       unstable ? false,
-      master ? false,
-      microvms ? false,
       ...
     }:
     let
@@ -31,8 +28,6 @@ rec {
       localNixpkgs =
         if unstable == true then
           nixpkgs-unstable
-        else if master == true then
-          nixpkgs-master
         else
           # inputs.nixpkgs-${name}, if that doesn't exist, just use nixpkgs
           nixpkgs.lib.attrByPath [ "nixpkgs-${name}" ] # path
-- 
cgit 1.4.1