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