dotfiles/hm/nix/default.nix
Geoffrey “Frogeye” Preud'homme 6989ca2721
Support pipe operator
Not using it now since my LSP thing doesn't like it, but at least it's
there.
2025-04-21 19:00:07 +02:00

32 lines
645 B
Nix

{
pkgs,
lib,
...
}:
{
config = {
home.packages = with pkgs; [
nvd
nix-diff
nix-tree
nix-output-monitor
];
programs.nix-index = {
# For non-NixOS systems
enable = false; # TODO Index is impossible to generate, should use https://github.com/nix-community/nix-index-database
# but got no luck without flakes
enableZshIntegration = true;
};
nix = {
package = lib.mkDefault pkgs.lix;
settings = {
experimental-features = [
"nix-command"
"flakes"
"pipe-operator"
];
warn-dirty = false;
};
};
};
}