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"; url = "github:nix-community/home-manager/release-22.11";
inputs.nixpkgs.follows = "nixpkgs"; 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 let
sysLinuxX64 = "x86_64-linux"; sysLinuxX64 = "x86_64-linux";
sysDarwin = "aarch64-darwin"; sysDarwin = "aarch64-darwin";
@ -39,7 +38,7 @@
inherit (pkgs) newScope; inherit (pkgs) newScope;
in in
makeScope newScope (self: rec { 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 (self.callPackage ./lib/utils.nix { }) mkSysRole mkHomeRole;
inherit (user) mkUser; inherit (user) mkUser;

View File

@ -3,7 +3,6 @@
, nixos-unstable , nixos-unstable
, unstablePkgs , unstablePkgs
, home-manager , home-manager
, pepe
, system , system
, mkHomeRole , mkHomeRole
, mkSysRole , mkSysRole
@ -44,7 +43,6 @@
registry = { registry = {
nixpkgs.flake = nixpkgs; nixpkgs.flake = nixpkgs;
unstable.flake = nixos-unstable; unstable.flake = nixos-unstable;
pepe.flake = pepe;
}; };
}; };