Working on tasklauncher
This commit is contained in:
+330
-328
File diff suppressed because it is too large
Load Diff
+4
-2
@@ -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
|
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
|
#+BEGIN_SRC nix :tangle generated/hyprland/task_launcher/wofi.nix :noweb tangle :mkdirp yes :eval never-html
|
||||||
{ config, pkgs, lib, user, flakeRoot, ... }:
|
{ config, pkgs, lib, user, flakeRoot, ... }:
|
||||||
|
let
|
||||||
|
xdgDataHome = config.home-manager.users.${user.username}.xdg.dataHome;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
# NixOS: Install Wofi system-wide (optional)
|
# NixOS: Install Wofi system-wide (optional)
|
||||||
environment.systemPackages = with pkgs; [ wofi ];
|
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
|
height=800
|
||||||
lines=10
|
lines=10
|
||||||
columns=1
|
columns=1
|
||||||
cache_dir=${config.xdg.dataHome}/wofi
|
cache_dir=${xdgDataHome}/wofi
|
||||||
allow_images=true
|
allow_images=true
|
||||||
allow_markup=true
|
allow_markup=true
|
||||||
show_drun=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
|
#+END_SRC
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
{ config, pkgs, lib, user, flakeRoot, ... }:
|
{ config, pkgs, lib, user, flakeRoot, ... }:
|
||||||
|
let
|
||||||
|
xdgDataHome = config.home-manager.users.${user.username}.xdg.dataHome;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
# NixOS: Install Wofi system-wide (optional)
|
# NixOS: Install Wofi system-wide (optional)
|
||||||
environment.systemPackages = with pkgs; [ wofi ];
|
environment.systemPackages = with pkgs; [ wofi ];
|
||||||
@@ -15,7 +18,7 @@
|
|||||||
height=800
|
height=800
|
||||||
lines=10
|
lines=10
|
||||||
columns=1
|
columns=1
|
||||||
cache_dir=${config.xdg.dataHome}/wofi
|
cache_dir=${xdgDataHome}/wofi
|
||||||
allow_images=true
|
allow_images=true
|
||||||
allow_markup=true
|
allow_markup=true
|
||||||
show_drun=true
|
show_drun=true
|
||||||
|
|||||||
Reference in New Issue
Block a user