From 20e25bf45f79b62b90244763826f0b845392f195 Mon Sep 17 00:00:00 2001 From: schererleander Date: Thu, 18 Sep 2025 22:36:48 +0200 Subject: feat: install mullvad vpn --- hosts/adam/configuration.nix | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) (limited to 'hosts') diff --git a/hosts/adam/configuration.nix b/hosts/adam/configuration.nix index 59813fb..e356ecf 100644 --- a/hosts/adam/configuration.nix +++ b/hosts/adam/configuration.nix @@ -1,4 +1,9 @@ -{ pkgs, host, username, ... }: +{ + pkgs, + host, + username, + ... +}: { @@ -8,8 +13,9 @@ ./wooting.nix ]; - boot.initrd.luks.devices."luks-0689cc49-e7d8-4eaa-ac8e-d4fd711217ac".device = "/dev/disk/by-uuid/0689cc49-e7d8-4eaa-ac8e-d4fd711217ac"; - + boot.initrd.luks.devices."luks-0689cc49-e7d8-4eaa-ac8e-d4fd711217ac".device = + "/dev/disk/by-uuid/0689cc49-e7d8-4eaa-ac8e-d4fd711217ac"; + # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; @@ -62,10 +68,16 @@ gnome.gnome-keyring.enable = true; }; - xdg.portal = { - enable = true; - wlr.enable = true; - }; + # Mullvad vpn + services.mullvad-vpn = { + enable = true; + package = pkgs.mullvad-vpn; + }; + + xdg.portal = { + enable = true; + wlr.enable = true; + }; security.polkit.enable = true; -- cgit v1.3.1