Palette library integrated + polybar and alacritty

This commit is contained in:
Filippo Berto 2021-06-11 00:20:03 +02:00
parent a61bfe3c50
commit ef5b48d142
17 changed files with 1090 additions and 214 deletions

15
extra/default.nix Normal file
View file

@ -0,0 +1,15 @@
{ system ? builtins.currentSystem
, pkgs ? import <nixpkgs> {}
, lib ? pkgs.lib
, ...
}:
let
callPackage = lib.callPackageWith (pkgs // self);
self = rec {
float = callPackage ./float {};
hex = callPackage ./hex {};
color = callPackage ./color {};
palette = callPackage ./palette {};
};
in
(self)