mirror of
https://github.com/inexcode/nixos-config.git
synced 2024-12-04 20:36:34 +00:00
21 lines
365 B
Nix
21 lines
365 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
gns3-gui
|
|
gns3-server
|
|
inetutils
|
|
dynamips
|
|
ubridge
|
|
vpcs
|
|
];
|
|
|
|
security.wrappers.ubridge = {
|
|
source = "/run/current-system/sw/bin/ubridge";
|
|
capabilities = "cap_net_admin,cap_net_raw=ep";
|
|
owner = "root";
|
|
group = "users";
|
|
permissions = "u+rx,g+x";
|
|
};
|
|
}
|