forked from colonelpanic/dotfiles
[NixOS] Build taffybar and xmonad with nix instead of stack
This commit is contained in:
Submodule dotfiles/config/taffybar/taffybar updated: eb9f7b9f43...07656d70f6
12
dotfiles/config/xmonad/overlay.nix
Normal file
12
dotfiles/config/xmonad/overlay.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
_: pkgs: rec {
|
||||
haskellPackages = pkgs.haskellPackages.override (old: {
|
||||
overrides = pkgs.lib.composeExtensions (old.overrides or (_: _: {})) (self: super: rec {
|
||||
xmonad = super.xmonad.overrideAttrs (_: {
|
||||
src = fetchGit ./xmonad;
|
||||
});
|
||||
xmonad-contrib = super.xmonad-contrib.overrideAttrs (_: {
|
||||
src = fetchGit ./xmonad-contrib;
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user