Move to flake based unstable import

This commit is contained in:
Jimbo 2025-02-25 02:14:16 -05:00
parent 611eaab26c
commit 2c4749f2cc
18 changed files with 17 additions and 29 deletions

View file

@ -0,0 +1,20 @@
{ config, lib, ... }:
{
options.look.colors = lib.mkOption {
type = lib.types.attrs;
default = {};
};
config.look.colors = {
prime = "3823C4"; #3823C4
accent = "1B1F59"; #1B1F59
split = "555B9E"; #555B9E
actSplit = "5980B7"; #5980B7
dark = "101419"; #101419
mid = "171C23"; #171C23
light = "272b33"; #272B33
urgent = "C43823"; #C43823
text = "C7D3E3"; #C7D3E3
folder = "indigo";
};
}