Add infrastructure for my own packaging
This commit is contained in:
parent
70e6bc23bf
commit
920eaf6bba
|
@ -79,6 +79,8 @@
|
|||
|
||||
lib = (pkgs.extend self.overlays.lib).lib;
|
||||
|
||||
packages.${system} = import ./pkgs { inherit pkgs; };
|
||||
|
||||
homeConfigurations = {
|
||||
h7x4 = home-manager.lib.homeManagerConfiguration {
|
||||
inherit system;
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
{ pkgs ? import <nixpkgs> {} }: let
|
||||
call = pkg: { name = pkg; value = pkgs.callPackage ./${pkg} {}; };
|
||||
in builtins.listToAttrs (map call [
|
||||
# TODO: Add some packages
|
||||
])
|
Loading…
Reference in New Issue