nixos-config/common/services/opensnitch.nix
2024-06-26 10:40:08 +02:00

17 lines
229 B
Nix

{
lib,
pkgs,
...
}: {
services.opensnitch.enable = true;
environment.systemPackages = with pkgs; [
opensnitch
opensnitch-ui
];
home-manager.users.tasia = {
services.opensnitch-ui.enable = true;
};
}