Add opensnitch and test gpg stuff
This commit is contained in:
parent
250cc416e3
commit
78dd3e8d40
3 changed files with 10 additions and 1 deletions
nixos
|
@ -3,7 +3,8 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSSHSupport = true;
|
enableSSHSupport = true;
|
||||||
enableBrowserSocket = true;
|
enableBrowserSocket = true;
|
||||||
pinentryFlavor = "emacs";
|
enableExtraSocket = true;
|
||||||
|
pinentryFlavor = "tty";
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
7
nixos/common/services/opensnitch.nix
Normal file
7
nixos/common/services/opensnitch.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{lib, pkgs, desktop, ... }: {
|
||||||
|
environment.systemPackages = [ ] ++ lib.optional (builtins.isString desktop) opensnitch-ui;
|
||||||
|
|
||||||
|
services.opensnitch = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -8,6 +8,7 @@
|
||||||
./common/services/tailscale.nix
|
./common/services/tailscale.nix
|
||||||
./common/services/fwupd.nix
|
./common/services/fwupd.nix
|
||||||
./common/services/gnupg-agent.nix
|
./common/services/gnupg-agent.nix
|
||||||
|
./common/services/opensnitch.nix
|
||||||
|
|
||||||
# CLI Software
|
# CLI Software
|
||||||
./common/software/cli/weechat.nix
|
./common/software/cli/weechat.nix
|
||||||
|
|
Loading…
Add table
Reference in a new issue