From a7541eefa8fc17ccd72bccd84a0831fea8d18bef Mon Sep 17 00:00:00 2001 From: June Date: Sun, 26 May 2024 18:32:55 +0200 Subject: [PATCH] Add tools and other stuff for a more comf. admin enviorn. on the hosts --- config/common/admin-environment.nix | 21 +++++++++++++++++++++ config/common/default.nix | 1 + 2 files changed, 22 insertions(+) create mode 100644 config/common/admin-environment.nix diff --git a/config/common/admin-environment.nix b/config/common/admin-environment.nix new file mode 100644 index 0000000..80fc2bf --- /dev/null +++ b/config/common/admin-environment.nix @@ -0,0 +1,21 @@ +{ config, pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + vim + joe + nano + htop + btop + ripgrep + fd + tmux + git + curl + rsync + usbutils + nix-tree + # For kitty terminfo. + kitty + ]; +} diff --git a/config/common/default.nix b/config/common/default.nix index 76bece1..5457e4e 100644 --- a/config/common/default.nix +++ b/config/common/default.nix @@ -3,6 +3,7 @@ { imports = [ ./acme.nix + ./admin-environment.nix ./default-host-platform.nix ./default-state-version.nix ./localization.nix