14 lines
311 B
Nix
14 lines
311 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# mullvad VPN
|
|
services.mullvad-vpn = {
|
|
enable = true;
|
|
package = pkgs.mullvad-vpn;
|
|
};
|
|
# intégration gestionnaire de fichiers (pour Dolphin)
|
|
#services.gvfs.enable = true;
|
|
#services.tumbler.enable = true;
|
|
#environment.sessionVariables = {
|
|
# NIXOS_OZONE_WL = "1";
|
|
#};
|
|
}
|