1
Fork 0
nixos-system-config/modules/system/development.nix
2024-12-26 18:29:49 +01:00

17 lines
225 B
Nix

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