add nixpkgs/config.nix

This commit is contained in:
surtur 2022-04-19 17:22:02 +02:00
parent 37180ac8f0
commit d8d86a2131
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -0,0 +1,33 @@
{
# https://nixos.org/manual/nixpkgs/stable/#sec-declarative-package-management
# https://github.com/g-w1/nix-configs/blob/main/home.nix
packageOverrides = pkgs: with pkgs; {
myPackages = pkgs.buildEnv {
name = "my-packages";
paths = [
aerc
b3sum
cpplint
cachix
hydra-check
nixops
nix-update
nix-diff
niff
nox
nix-du
nixfmt
statix
elvish
silver-searcher
starship
ttyper
nerdfonts
];
pathsToLink = [ "/share" "/bin" "/etc" ];
};
};
}