Working on tasklauncher

This commit is contained in:
2026-03-08 09:16:22 +01:00
parent 3f19de6ae0
commit bc0e848888
6 changed files with 552 additions and 519 deletions
@@ -1,7 +1,7 @@
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
imports = [
# No subfolders to import
./wofi.nix
];
# .. put any code here
}
@@ -0,0 +1,32 @@
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
programs.wofi = {
enable = true;
wrapGtkApps = true; # Required for GTK theming
extraPackages = with pkgs; [ wofi ];
};
# Catppuccin theme for Wofi
home-manager.users.${user.username} = {
xdg.configFile."wofi/config".text = ''
dark
width=500
height=800
lines=10
columns=1
cache_dir=${config.xdg.dataHome}/wofi
allow_images=true
allow_markup=true
show_drun=true
'';
xdg.configFile."wofi/style.css".source = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "wofi";
rev = "main";
sha256 = "sha256-0000000000000000000000000000000000000000000000000000"; # Update with the correct hash
file = "mocha.css"; # or latte/frappe/macchiato
};
};
# .. put any code here
}
@@ -1,7 +1,7 @@
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
imports = [
./wofi.nix
# No subfolders to import
];
# .. put any code here
}
@@ -1,31 +1,4 @@
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
programs.wofi = {
enable = true;
wrapGtkApps = true; # Required for GTK theming
extraPackages = with pkgs; [ wofi ];
};
# Catppuccin theme for Wofi
home-manager.users.${user.username} = {
xdg.configFile."wofi/config".text = ''
dark
width=500
height=800
lines=10
columns=1
cache_dir=${config.xdg.dataHome}/wofi
allow_images=true
allow_markup=true
show_drun=true
'';
xdg.configFile."wofi/style.css".source = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "wofi";
rev = "main";
sha256 = "sha256-0000000000000000000000000000000000000000000000000000"; # Update with the correct hash
file = "mocha.css"; # or latte/frappe/macchiato
};
};
# .. put any code here
}