aboutsummaryrefslogtreecommitdiff
path: root/modules/base/shell
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-18 16:15:08 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-18 16:21:12 +0000
commit1baf06b24f15826a76f380b615921bf953edb8e4 (patch)
tree5a65843e91a82357325d006f53991b329fc147c0 /modules/base/shell
parent40a648ee549738a09efd416e0c27645b6d30af6a (diff)
base/<>: refactoring shell and user layout
Diffstat (limited to 'modules/base/shell')
-rw-r--r--modules/base/shell/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/modules/base/shell/default.nix b/modules/base/shell/default.nix
new file mode 100644
index 00000000000..d746ee5244e
--- /dev/null
+++ b/modules/base/shell/default.nix
@@ -0,0 +1,32 @@
+/* ADDITIONAL SHELL TOOLS
+ *
+ * This module is a bit hard to wrap your head around, not because of
+ * what it does but because of the classification of tools it
+ * contains. It's a list of various utilities that are super useful
+ * for day-to-day use, but it's difficult to avoid just having one
+ * large file that contains _all_ applications you would ever use.
+ *
+ * Only add stuff to this list if you're sure that it will be useful
+ * on ALL workstations, as well as root-servers and user-servers!
+ */
+
+{ pkgs, ... }:
+
+{
+ home-manager.users.spacekookie = { ... }: {
+ home.packages = with pkgs; [
+ bat
+ curl
+ fzf
+ moreutils
+ pciutils
+ pv
+ ripgrep
+ skim
+ tmux
+ tree
+ usbutils
+ wget
+ ];
+ };
+}