Working on tasklauncher

This commit is contained in:
2026-03-08 09:20:00 +01:00
parent 9d9d842da3
commit d8f588babd
3 changed files with 338 additions and 331 deletions
+330 -328
View File
File diff suppressed because it is too large Load Diff
+4 -2
View File
@@ -843,6 +843,9 @@ This is top file of this level which contains just an import statement for all r
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/hyprland/task_launcher/wofi.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, flakeRoot, ... }:
let
xdgDataHome = config.home-manager.users.${user.username}.xdg.dataHome;
in
{
# NixOS: Install Wofi system-wide (optional)
environment.systemPackages = with pkgs; [ wofi ];
@@ -859,7 +862,7 @@ This is top file of this level which contains just an import statement for all r
height=800
lines=10
columns=1
cache_dir=${config.xdg.dataHome}/wofi
cache_dir=${xdgDataHome}/wofi
allow_images=true
allow_markup=true
show_drun=true
@@ -874,7 +877,6 @@ This is top file of this level which contains just an import statement for all r
};
};
}
#+END_SRC
@@ -1,4 +1,7 @@
{ config, pkgs, lib, user, flakeRoot, ... }:
let
xdgDataHome = config.home-manager.users.${user.username}.xdg.dataHome;
in
{
# NixOS: Install Wofi system-wide (optional)
environment.systemPackages = with pkgs; [ wofi ];
@@ -15,7 +18,7 @@
height=800
lines=10
columns=1
cache_dir=${config.xdg.dataHome}/wofi
cache_dir=${xdgDataHome}/wofi
allow_images=true
allow_markup=true
show_drun=true