diff options
Diffstat (limited to 'hosts/adam/configuration.nix')
| -rw-r--r-- | hosts/adam/configuration.nix | 26 |
1 files changed, 19 insertions, 7 deletions
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; |
