Revert "Added this flake to hosts registry in mkHost"

This reverts commit 1ff83d84c7.
This commit is contained in:
Giulio De Pasquale 2023-02-19 06:01:34 +01:00
parent 7c3f8c55f9
commit 88583bcb82
2 changed files with 2 additions and 5 deletions

View File

@ -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;

View File

@ -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;
};
};