From 88583bcb8284f1a2be6558ac72b847d7dfd77072 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Sun, 19 Feb 2023 06:01:34 +0100 Subject: [PATCH] Revert "Added this flake to hosts registry in mkHost" This reverts commit 1ff83d84c735f8baea287785e3ee5663450fc3ee. --- flake.nix | 5 ++--- lib/host.nix | 2 -- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 5a05e26..c28b68b 100644 --- a/flake.nix +++ b/flake.nix @@ -6,10 +6,9 @@ url = "github:nix-community/home-manager/release-22.11"; inputs.nixpkgs.follows = "nixpkgs"; }; - pepe.url = "git+https://git.giugl.io/peperunas/nixos"; }; - outputs = { self, nixpkgs, nixos-unstable, home-manager, pepe }: + outputs = { self, nixpkgs, nixos-unstable, home-manager }: let sysLinuxX64 = "x86_64-linux"; sysDarwin = "aarch64-darwin"; @@ -39,7 +38,7 @@ inherit (pkgs) newScope; in makeScope newScope (self: rec { - inherit nixpkgs home-manager nixos-unstable pepe; + inherit nixpkgs home-manager nixos-unstable; inherit (self.callPackage ./lib/utils.nix { }) mkSysRole mkHomeRole; inherit (user) mkUser; diff --git a/lib/host.nix b/lib/host.nix index 25a06e5..8982403 100644 --- a/lib/host.nix +++ b/lib/host.nix @@ -3,7 +3,6 @@ , nixos-unstable , unstablePkgs , home-manager -, pepe , system , mkHomeRole , mkSysRole @@ -44,7 +43,6 @@ registry = { nixpkgs.flake = nixpkgs; unstable.flake = nixos-unstable; - pepe.flake = pepe; }; };