Implemented custom system for creating and distributing color schemes based on wallpapers, and also cycling through wallpapers.

nixfmt'd the codebase
This commit is contained in:
2026-03-09 22:02:46 -04:00
parent 4308b8eb16
commit 8ee748a997
145 changed files with 2776 additions and 1125 deletions

View File

@@ -1,25 +1,28 @@
{ pkgs, self, lib, config, ... }:
{
pkgs,
self,
lib,
config,
...
}:
let
scheme = "ayu-dark";
wallpaper = "${self}/assets/wallpapers/dark-waves.jpg";
in {
in
{
options = {
movOpts.sysEnv.stylixConfig.enable =
lib.mkEnableOption "enables custom stylix options";
movOpts.sysEnv.stylixConfig.enable = lib.mkEnableOption "enables custom stylix options";
};
config = lib.mkIf config.movOpts.sysEnv.stylixConfig.enable {
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/${scheme}.yaml";
image = wallpaper;
homeManagerIntegration = {
autoImport = true;
followSystem = true;
};
polarity = "dark";
autoEnable = true;
opacity.terminal = 0.8;
targets = {
console.enable = false;
feh.enable = true;