nixpkgs/home/programs.nix
Daniel Siepmann 9e801efd12
Integrate nix-index
This is a try, not sure if I need it, it probably will increase consumed
time by update procedure.
2022-05-22 19:13:53 +02:00

52 lines
949 B
Nix

{ config, pkgs }:
{
# Let Home Manager install and manage itself.
home-manager.enable = true;
# Add hook to zsh and bash.
# Does not work as there is no sqlite file.
# command-not-found.enable = true;
# Use nix-index as replacement.
# This needs to build index, which I do in custom-update-system
nix-index.enable = true;
neovim = import ./programs/neovim.nix {
inherit pkgs;
};
git = import ./programs/git.nix {
inherit pkgs;
};
htop = import ./programs/htop.nix {
inherit config;
};
tmux = import ./programs/tmux.nix {
inherit pkgs;
};
jq = import ./programs/jq.nix {
inherit config;
};
zsh = import ./programs/zsh.nix {
inherit config pkgs;
};
keychain = import ./programs/keychain.nix {
inherit config pkgs;
};
zathura = import ./programs/zathura.nix {
};
firefox = import ./programs/firefox.nix {
inherit pkgs;
};
# Media
cmus.enable = true;
}