2024-01-11 23:54:03 +01:00
|
|
|
{ pkgs, lib, config, ... }:
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
home.packages = with pkgs; [
|
2024-04-01 14:59:07 +02:00
|
|
|
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.nixFlakes;
|
|
|
|
settings = {
|
|
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
warn-dirty = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|