1
Fork 0
nixos-system-config/modules/system/development.nix

16 lines
202 B
Nix
Raw Permalink Normal View History

2024-09-05 12:22:58 +02:00
{ pkgs, ... }:
{
imports = [
../packages/git.nix
../packages/nvim.nix
];
2024-09-05 12:22:58 +02:00
environment.systemPackages = with pkgs; [
wireshark
];
2024-09-05 12:25:16 +02:00
users.users.hu.extraGroups = [ "wireshark" ];
}
2024-09-05 12:25:16 +02:00