disable wofi lazy
This commit is contained in:
parent
14c475debd
commit
aec5ebb2f3
1 changed files with 5 additions and 3 deletions
|
|
@ -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" ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue