2024-09-05 12:22:58 +02:00
|
|
|
{ pkgs, ... }:
|
2024-08-26 15:01:33 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
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-08-26 15:01:33 +02:00
|
|
|
}
|
2024-09-05 12:25:16 +02:00
|
|
|
|