Created
November 1, 2017 14:19
-
-
Save anonymous/f79ae966b17992940c48006c9df7ac81 to your computer and use it in GitHub Desktop.
Override Nix Package
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
# NixPkgs Overrides | |
nixpkgs.config = { | |
allowUnfree = true; | |
packageOverrides = super: let self = super.pkgs; in { | |
polybar = super.polybar.override (old: { | |
i3Support = true; | |
}); | |
}; | |
}; | |
environment.systemPackages = with pkgs; [ | |
polybar | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment