diff --git a/modules/features/desktop.nix b/modules/features/desktop.nix index 48514e0..1c09094 100644 --- a/modules/features/desktop.nix +++ b/modules/features/desktop.nix @@ -1,7 +1,6 @@ # This module is for programs with GUIs that run in a desktop environment -{ inputs, ... }: -{ - flake.modules.homeManager.desktop = { pkgs, ... }: { +{ self, inputs, ... }: { + flake.modules.homeManager.desktop = { config, pkgs, lib, ... }: { imports = with inputs.self.modules.homeManager; [ brave ghostty @@ -11,6 +10,7 @@ home.packages = with pkgs; [ mangohud sublime4 + proton-vpn ]; }; }