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

15 lines
202 B
Nix

{ pkgs, ... }:
{
imports = [
../packages/git.nix
../packages/nvim.nix
];
environment.systemPackages = with pkgs; [
wireshark
];
users.users.hu.extraGroups = [ "wireshark" ];
}