Skip to content

Instantly share code, notes, and snippets.

Created November 1, 2017 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/f79ae966b17992940c48006c9df7ac81 to your computer and use it in GitHub Desktop.
Save anonymous/f79ae966b17992940c48006c9df7ac81 to your computer and use it in GitHub Desktop.
Override Nix Package
{
# 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