27 lines
380 B
Nix
27 lines
380 B
Nix
|
{ config
|
||
|
, lib
|
||
|
, pkgs
|
||
|
, ...
|
||
|
}:
|
||
|
|
||
|
with lib;
|
||
|
let
|
||
|
cfg = config.my.services.mullvad;
|
||
|
in
|
||
|
{
|
||
|
options.my.services.mullvad = {
|
||
|
enable = mkOption {
|
||
|
default = false;
|
||
|
type = types.bool;
|
||
|
example = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
services.mullvad-vpn.enable = true;
|
||
|
users.users.moritz.packages = with pkgs; [
|
||
|
mullvad-vpn
|
||
|
];
|
||
|
};
|
||
|
}
|