dotfiles/hm/nix/default.nix

33 lines
629 B
Nix
Raw Normal View History

2024-12-15 00:29:51 +01:00
{
pkgs,
lib,
config,
...
}:
2024-01-11 23:54:03 +01:00
{
config = {
home.packages = with pkgs; [
nvd
2024-01-11 23:54:03 +01:00
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;
2024-01-11 23:54:03 +01:00
settings = {
2024-12-15 00:29:51 +01:00
experimental-features = [
"nix-command"
"flakes"
];
2024-01-11 23:54:03 +01:00
warn-dirty = false;
};
};
};
}