Add programs to home-manager
Support commonly used programs like fd, exa, bat, etc. For now, I'm unsure how to manage the programs in my emacs/default.nix with my home.nix. I'll wait until I have a stronger opinion to handle this.
This commit is contained in:
parent
f645b6dadf
commit
19742e7790
3 changed files with 18 additions and 20 deletions
|
|
@ -1,10 +1,24 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
];
|
||||
|
||||
home.stateVersion = "19.09";
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
bat
|
||||
exa
|
||||
ripgrep
|
||||
fd
|
||||
pass
|
||||
tokei
|
||||
nmap
|
||||
tldr
|
||||
diskus
|
||||
jq
|
||||
pup
|
||||
];
|
||||
sessionVariables = {
|
||||
};
|
||||
stateVersion = "19.09";
|
||||
};
|
||||
|
||||
##############################################################################
|
||||
# Programs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue