From aec5ebb2f399a6e602d7c050c35cb1dbf288f98f Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Thu, 4 Apr 2024 14:46:40 +0200 Subject: [PATCH] disable wofi lazy --- hosts/default/home.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hosts/default/home.nix b/hosts/default/home.nix index d6a19ec..14995f5 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -1,4 +1,4 @@ -{ config, pkgs, inputs, ... }: +{ config, pkgs, inputs, lib, ... }: { imports = @@ -32,7 +32,7 @@ modules = { hyprland.enable = true; - wofi.lazy = true; + wofi.lazy = false; }; # The home.packages option allows you to install Nix packages into your @@ -48,6 +48,8 @@ obs-studio wayvnc + (lib.mkIf (!config.modules.wofi.lazy) steam-run) + btop dconf @@ -109,7 +111,7 @@ enable = true; extraPortals = [ pkgs.xdg-desktop-portal-hyprland ]; }; - mimeApps = { + mimeApps = lib.mkIf config.modules.wofi.lazy { enable = true; associations.added = { "video/mp4" = [ "mpv.out.desktop" ];