From a4b6b50987d3b872af0be133b2fefab2fa8f4c6a Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Thu, 30 Oct 2025 23:01:07 +0100 Subject: [PATCH] changed background animation of ly. --- configs/nixos/bluetooth.nix | 42 ++++++++++++++++++------------------- configs/nixos/graphical.nix | 4 ++++ 2 files changed, 25 insertions(+), 21 deletions(-) diff --git a/configs/nixos/bluetooth.nix b/configs/nixos/bluetooth.nix index abe94bd..258718d 100644 --- a/configs/nixos/bluetooth.nix +++ b/configs/nixos/bluetooth.nix @@ -5,27 +5,27 @@ ... }: { hardware.bluetooth = { - enable = true; - powerOnBoot = true; - settings = { - General = { - # Shows battery charge of connected devices on supported - # Bluetooth adapters. Defaults to 'false'. - # Experimental = true; - # When enabled other devices can connect faster to us, however - # the tradeoff is increased power consumption. Defaults to - # 'false'. - # FastConnectable = true; - }; - Policy = { - # Enable all controllers when they are found. This includes - # adapters present on start as well as adapters that are plugged - # in later on. Defaults to 'true'. - AutoEnable = true; + enable = true; + powerOnBoot = true; + settings = { + General = { + # Shows battery charge of connected devices on supported + # Bluetooth adapters. Defaults to 'false'. + # Experimental = true; + # When enabled other devices can connect faster to us, however + # the tradeoff is increased power consumption. Defaults to + # 'false'. + # FastConnectable = true; + }; + Policy = { + # Enable all controllers when they are found. This includes + # adapters present on start as well as adapters that are plugged + # in later on. Defaults to 'true'. + AutoEnable = true; + }; }; }; -}; -# services.blueman.enable = true; + # services.blueman.enable = true; home-manager.users.${config.host.details.user} = { config, osConfig, @@ -36,9 +36,9 @@ lib.mkMerge [ ( lib.mkIf (osConfig.host.details.gui.enable) - [ ] + [] ) - [ bluetui ] + [bluetui] ]; }; } diff --git a/configs/nixos/graphical.nix b/configs/nixos/graphical.nix index b6b1204..bcc3583 100644 --- a/configs/nixos/graphical.nix +++ b/configs/nixos/graphical.nix @@ -10,5 +10,9 @@ services.xserver.xkb.options = "ctrl:nocaps,compose:rctrl"; services.displayManager.ly = { enable = true; + settings = { + animation = "matrix"; + bigclock = "en"; + }; }; }