diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-24 20:52:44 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-24 20:52:44 +0100 |
commit | 72ceb05070fb2a4aecefbecc6f582b41b9e71b1c (patch) | |
tree | ba89218cef392b088528f2375635681ebaeef429 /pkgs/default.nix | |
parent | 8096ed8c66f08afa02714f3660f8539d48f08da8 (diff) |
add my dwm setup
Diffstat (limited to '')
-rw-r--r-- | pkgs/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 5e0d2b8..af5e4f1 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -2,6 +2,8 @@ pkgs: super: { eth = { recipesEthMoe = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/recipes.eth.moe"; } ) {}; + dwm = pkgs.callPackage ./dwm {}; + catbus-lifx = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/catbus-lifx"; } ) {}; catbus-snapcast = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/catbus-snapcast"; } ) {}; catbus-web-ui = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/catbus-web-ui"; } ) {}; @@ -11,5 +13,7 @@ pkgs: super: { libnpupnp = pkgs.callPackage ./libnpupnp { }; libupnpp = pkgs.callPackage ./libupnpp { }; upmpdcli = pkgs.callPackage ./upmpdcli { }; + + reuse = pkgs.callPackage /home/eth/src/nixpkgs/pkgs/tools/package-management/reuse {}; }; } |