fuzzel.nix: add settings
This commit is contained in:
parent
59778c7c43
commit
dc9321fe01
4 changed files with 31 additions and 1 deletions
|
@ -5,5 +5,6 @@ _: {
|
||||||
./tui
|
./tui
|
||||||
./editors
|
./editors
|
||||||
./other/module.nix
|
./other/module.nix
|
||||||
|
./launchers/module.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
26
modules/programs/launchers/fuzzel.nix
Normal file
26
modules/programs/launchers/fuzzel.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
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 = {
|
||||||
|
icon-theme = "Papirus-Dark";
|
||||||
|
font = "ComicShannsMono:weight=bold:size=36";
|
||||||
|
terminal = "foot -e";
|
||||||
|
# make fuzzel appear on fullscreen windows
|
||||||
|
layer = "overlay";
|
||||||
|
background = "000000";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
3
modules/programs/launchers/module.nix
Normal file
3
modules/programs/launchers/module.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
_: {
|
||||||
|
imports = [./fuzzel.nix];
|
||||||
|
}
|
|
@ -2,6 +2,6 @@ _: {
|
||||||
imports = [
|
imports = [
|
||||||
./rofi
|
./rofi
|
||||||
./anyrun
|
./anyrun
|
||||||
./fuzzel/module.nix
|
# ./fuzzel/module.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue