Compare commits

..

No commits in common. "5b962cde641ccbc34ae7d439d554aab5df0f3843" and "4b8e9bc93dab2ec7e50ddf35b657a49ceaf66792" have entirely different histories.

2 changed files with 2 additions and 6 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;
@ -98,7 +97,6 @@
defaultTemplate = self.templates.basicShell; defaultTemplate = self.templates.basicShell;
templates = { templates = {
basicShell.path = ./templates/basicShell; basicShell.path = ./templates/basicShell;
description = "A barebone shell with custom defined packages";
}; };
}; };
} }

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