mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 04:51:55 -05:00
restore fuzzel module
Some checks are pending
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
Some checks are pending
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
This commit is contained in:
parent
98c0470bc4
commit
ad0e824804
|
@ -6,6 +6,7 @@
|
||||||
./emacs
|
./emacs
|
||||||
./fastfetch
|
./fastfetch
|
||||||
./firefox
|
./firefox
|
||||||
|
./fuzzel
|
||||||
./helix
|
./helix
|
||||||
./keepassxc
|
./keepassxc
|
||||||
./kitty
|
./kitty
|
||||||
|
|
26
homeManagerModules/apps/fuzzel/default.nix
Normal file
26
homeManagerModules/apps/fuzzel/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
cfg = config.ar.home;
|
||||||
|
in {
|
||||||
|
config = lib.mkIf cfg.apps.fuzzel.enable {
|
||||||
|
programs.fuzzel = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
border = {
|
||||||
|
radius = cfg.theme.borderRadius;
|
||||||
|
width = 4;
|
||||||
|
};
|
||||||
|
|
||||||
|
main = {
|
||||||
|
layer = "overlay";
|
||||||
|
lines = 3;
|
||||||
|
terminal = lib.getExe cfg.defaultApps.terminal;
|
||||||
|
width = 36;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -45,7 +45,7 @@ in {
|
||||||
gtk = {
|
gtk = {
|
||||||
iconTheme = {
|
iconTheme = {
|
||||||
name =
|
name =
|
||||||
if cfg.darkMode
|
if config.stylix.polarity == "dark"
|
||||||
then "Papirus-Dark"
|
then "Papirus-Dark"
|
||||||
else "Papirus";
|
else "Papirus";
|
||||||
|
|
||||||
|
|
|
@ -116,7 +116,6 @@ self: {
|
||||||
theme = {
|
theme = {
|
||||||
enable = true;
|
enable = true;
|
||||||
borderRadius = 0;
|
borderRadius = 0;
|
||||||
darkMode = true;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue