diff options
| author | seraphim <18ycm9tx@anonaddy.me> | 2026-08-06 15:43:29 +0700 |
|---|---|---|
| committer | seraphim <18ycm9tx@anonaddy.me> | 2026-08-06 15:43:29 +0700 |
| commit | 2a4a92d3a5718808d614575d52ae48b50d9c45f7 (patch) | |
| tree | 38e707afa98962dd1f8a00c2b16d9ed17b7c80a1 /nixos/modules/features | |
| parent | 1a9aa4cb5829ad917d33363d31c365978ac0e012 (diff) | |
wireguard added
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 |
