aboutsummaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-08-12 09:49:55 -0700
committerFranck Cuny <franck@fcuny.net>2025-08-12 09:49:55 -0700
commit253bffaf53e229983de096cacd22c272c6d18a4d (patch)
tree56915465eb3a0c96c847b77c2d3d18676be0681d /profiles
parentprofile for sshd (diff)
downloadinfra-253bffaf53e229983de096cacd22c272c6d18a4d.tar.gz
profile for tools
Diffstat (limited to 'profiles')
-rw-r--r--profiles/core/tools.nix19
-rw-r--r--profiles/default.nix17
2 files changed, 19 insertions, 17 deletions
diff --git a/profiles/core/tools.nix b/profiles/core/tools.nix
new file mode 100644
index 0000000..ff6899e
--- /dev/null
+++ b/profiles/core/tools.nix
@@ -0,0 +1,19 @@
+{ pkgs, ... }:
+{
+ environment.systemPackages = with pkgs; [
+ curl
+ fd
+ fish
+ git
+ htop
+ jq
+ mtr
+ pciutils
+ powertop
+ ripgrep
+ tcpdump
+ traceroute
+ vim
+ wireguard-tools
+ ];
+}
diff --git a/profiles/default.nix b/profiles/default.nix
index d9aa706..87079fa 100644
--- a/profiles/default.nix
+++ b/profiles/default.nix
@@ -36,23 +36,6 @@
programs.fish.enable = true;
security.sudo.wheelNeedsPassword = false;
- environment.systemPackages = with pkgs; [
- curl
- fd
- fish
- git
- htop
- jq
- mtr
- pciutils
- powertop
- ripgrep
- tcpdump
- traceroute
- vim
- wireguard-tools
- ];
-
## disable that slow "building man-cache" step
documentation.man.generateCaches = lib.mkForce false;
}