add pkgs.nix -> voyager

This commit is contained in:
2026-07-08 14:31:56 +02:00
parent c29fbaad0d
commit 02db1d9901
2 changed files with 23 additions and 4 deletions
+1 -4
View File
@@ -8,9 +8,6 @@
./boot.nix
./dnsmasq.nix
./ssh.nix
./pkgs.nix
];
services.cockpit = {
enable = true;
openFirewall = true;
};
}
+22
View File
@@ -0,0 +1,22 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vim
wget
git
curl
fastfetch
net-tools
ethtool
dhcpcd
dig
usbutils
dhcpcd
host
dnslookup
drill
dig
tree
lsof
];
}