nixos-config/common/services/opensnitch.nix

17 lines
229 B
Nix
Raw Normal View History

2024-06-26 10:40:08 +02:00
{
lib,
pkgs,
...
}: {
services.opensnitch.enable = true;
environment.systemPackages = with pkgs; [
opensnitch
opensnitch-ui
];
home-manager.users.tasia = {
services.opensnitch-ui.enable = true;
};
}