about summary refs log tree commit diff
path: root/configs
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-03-05T15·02+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-03-06T10·15+0000
commit19742e7790d31e5c0c36fd0d08b07fb958009464 (patch)
treeef04df90942b8b82ecfeef864b68ebffcce2af9f /configs
parentf645b6dadf1d0d8cc9dbcf61c9e93a222487e1c7 (diff)
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.
Diffstat (limited to 'configs')
-rw-r--r--configs/shared/.config/nixpkgs/home.nix22
1 files changed, 18 insertions, 4 deletions
diff --git a/configs/shared/.config/nixpkgs/home.nix b/configs/shared/.config/nixpkgs/home.nix
index 63bdf047b3f9..f37454165e6d 100644
--- a/configs/shared/.config/nixpkgs/home.nix
+++ b/configs/shared/.config/nixpkgs/home.nix
@@ -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