diff options
author | Emile <git@emile.space> | 2024-12-03 21:51:22 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2024-12-03 21:51:22 +0100 |
commit | e754de32526e1e048f6d706c797c3f94a899517b (patch) | |
tree | 88bb38b55a03ef8a862f489cb652579d50790492 /nix/lib/flake-helper.nix | |
parent | 30b941cbf0cbf34f6379e7d7330b08ee4ad78597 (diff) |
(flake) remove the tmp master and microvm inputs
Diffstat (limited to 'nix/lib/flake-helper.nix')
-rw-r--r-- | nix/lib/flake-helper.nix | 5 |
1 files changed, 0 insertions, 5 deletions
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 |