changed background animation of ly.

This commit is contained in:
Gabe Venberg 2025-10-30 23:01:07 +01:00
parent dc8df3060a
commit a4b6b50987
2 changed files with 25 additions and 21 deletions

View file

@ -5,27 +5,27 @@
... ...
}: { }: {
hardware.bluetooth = { hardware.bluetooth = {
enable = true; enable = true;
powerOnBoot = true; powerOnBoot = true;
settings = { settings = {
General = { General = {
# Shows battery charge of connected devices on supported # Shows battery charge of connected devices on supported
# Bluetooth adapters. Defaults to 'false'. # Bluetooth adapters. Defaults to 'false'.
# Experimental = true; # Experimental = true;
# When enabled other devices can connect faster to us, however # When enabled other devices can connect faster to us, however
# the tradeoff is increased power consumption. Defaults to # the tradeoff is increased power consumption. Defaults to
# 'false'. # 'false'.
# FastConnectable = true; # FastConnectable = true;
}; };
Policy = { Policy = {
# Enable all controllers when they are found. This includes # Enable all controllers when they are found. This includes
# adapters present on start as well as adapters that are plugged # adapters present on start as well as adapters that are plugged
# in later on. Defaults to 'true'. # in later on. Defaults to 'true'.
AutoEnable = true; AutoEnable = true;
};
}; };
}; };
}; # services.blueman.enable = true;
# services.blueman.enable = true;
home-manager.users.${config.host.details.user} = { home-manager.users.${config.host.details.user} = {
config, config,
osConfig, osConfig,
@ -36,9 +36,9 @@
lib.mkMerge [ lib.mkMerge [
( (
lib.mkIf (osConfig.host.details.gui.enable) lib.mkIf (osConfig.host.details.gui.enable)
[ ] []
) )
[ bluetui ] [bluetui]
]; ];
}; };
} }

View file

@ -10,5 +10,9 @@
services.xserver.xkb.options = "ctrl:nocaps,compose:rctrl"; services.xserver.xkb.options = "ctrl:nocaps,compose:rctrl";
services.displayManager.ly = { services.displayManager.ly = {
enable = true; enable = true;
settings = {
animation = "matrix";
bigclock = "en";
};
}; };
} }