diff --git a/Droidnix/generated/hyprland/task_launcher/wofi.nix b/Droidnix/generated/hyprland/task_launcher/wofi.nix index 9f0d0a88d..db0fab1e6 100644 --- a/Droidnix/generated/hyprland/task_launcher/wofi.nix +++ b/Droidnix/generated/hyprland/task_launcher/wofi.nix @@ -7,22 +7,17 @@ }: { - # Install Wofi and its dependencies - environment.systemPackages = with pkgs; [ - wofi - ]; + # Install Wofi + environment.systemPackages = with pkgs; [ wofi ]; # Home Manager configuration for Wofi home-manager.users.henrov = { - # Create the config directory if it doesn't exist + # Manage only the config and style files home.file = { ".config/wofi/config".text = lib.readFile "${flakeRoot}/.assets/hyprland/conf/wofi/wofi.conf"; ".config/wofi/style.css".source = "${flakeRoot}/.assets/hyprland/conf/wofi/theming.css"; }; - # Ensure the .config/wofi directory exists - home.file.".config/wofi".ensureDir = true; - # Environment variables for Wofi home.sessionVariables = { WOFI_CONFIG = "$HOME/.config/wofi/config";