Add mullvad and qbittorrent

This commit is contained in:
outfoxxed 2023-06-28 01:39:01 -07:00
parent beed9ea468
commit 2d79317ef4
Signed by: outfoxxed
GPG Key ID: 4C88A185FB89301E
3 changed files with 10 additions and 2 deletions

View File

@ -98,12 +98,13 @@
libreoffice
nnn
ripgrep
light
qbittorrent
libsForQt5.kwallet
libsForQt5.kwalletmanager
distrobox
xdg-utils
light
unrar # used by ark
];

View File

@ -1,5 +1,8 @@
{ pkgs, ... }: {
imports = [ ./hardware.nix ];
imports = [
./hardware.nix
./mullvad.nix
];
system.stateVersion = "23.11";
networking.hostName = "lenovo";
time.timeZone = "America/Vancouver";

View File

@ -0,0 +1,4 @@
{ pkgs, config, ... }: {
services.mullvad-vpn.enable = true;
home-manager.users.${config.main-user}.home.packages = [ pkgs.mullvad-vpn ];
}