17 lines
229 B
Nix
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;
|
||
|
};
|
||
|
}
|