From d008fa58148e2b28bd84f92c67c6e62b0ba1fe86 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Thu, 26 Mar 2026 22:32:34 -0500 Subject: [PATCH] rename --- modules/features/desktop.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ]; }; }