diff options
Diffstat (limited to 'nixos/modules/features')
| -rw-r--r-- | nixos/modules/features/desktop-apps/default.nix | 1 | ||||
| -rw-r--r-- | nixos/modules/features/vpn-utils/default.nix | 18 |
2 files changed, 18 insertions, 1 deletions
diff --git a/nixos/modules/features/desktop-apps/default.nix b/nixos/modules/features/desktop-apps/default.nix index 175938e..bbc7683 100644 --- a/nixos/modules/features/desktop-apps/default.nix +++ b/nixos/modules/features/desktop-apps/default.nix @@ -15,7 +15,6 @@ pkgs.ayugram-desktop pkgs.legcord pkgs.vesktop - pkgs.amnezia-vpn obsidian obs-studio pkgs.qbittorrent diff --git a/nixos/modules/features/vpn-utils/default.nix b/nixos/modules/features/vpn-utils/default.nix new file mode 100644 index 0000000..258f0ef --- /dev/null +++ b/nixos/modules/features/vpn-utils/default.nix @@ -0,0 +1,18 @@ +{ pkgs, ... }: + +{ + programs.throne = { + enable = true; + tunMode.enable = true; + }; + + programs.amnezia-vpn.enable = true; + + networking.wireguard.enable = true; + + environment.systemPackages = with pkgs; [ + wireguard-tools + wireguard-ui + gnomeExtensions.wireguard-vpn-extension + ]; +}
\ No newline at end of file |
