fuzzel: move to module.nix
This commit is contained in:
parent
2700890d6b
commit
30bc6413ca
2 changed files with 1 additions and 1 deletions
29
modules/programs/launchers/fuzzel/module.nix
Normal file
29
modules/programs/launchers/fuzzel/module.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf;
|
||||
inherit (config.modules.other.system) username;
|
||||
cfg = config.modules.usrEnv.programs.launchers.fuzzel;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
home-manager.users.${username} = {
|
||||
programs.fuzzel = {
|
||||
enable = true;
|
||||
package = pkgs.fuzzel;
|
||||
settings = {
|
||||
main = {
|
||||
terminal = "${pkgs.foot}/bin/foot -e";
|
||||
# make fuzzel appear on fullscreen windows
|
||||
layer = "overlay";
|
||||
icon-theme = "Papirus-Dark";
|
||||
font = "ComicShannsMono:weight=regular:size=14";
|
||||
};
|
||||
# background = "000000";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue