disable wofi lazy

This commit is contained in:
Noa Aarts 2024-04-04 14:46:40 +02:00
parent 14c475debd
commit aec5ebb2f3

View file

@ -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" ];