Devariable domains
This commit is contained in:
parent
2c4749f2cc
commit
984b12819e
55 changed files with 152 additions and 179 deletions
12
modules/home/variables/look/border/default.nix
Normal file
12
modules/home/variables/look/border/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.look.border = lib.mkOption {
|
||||
type = lib.types.attrs;
|
||||
default = {};
|
||||
};
|
||||
|
||||
config.look.border = rec {
|
||||
int = 3;
|
||||
string = toString int;
|
||||
};
|
||||
}
|
20
modules/home/variables/look/colors/default.nix
Normal file
20
modules/home/variables/look/colors/default.nix
Normal 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";
|
||||
};
|
||||
}
|
8
modules/home/variables/look/default.nix
Normal file
8
modules/home/variables/look/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./border
|
||||
./colors
|
||||
./fonts
|
||||
];
|
||||
}
|
12
modules/home/variables/look/fonts/default.nix
Normal file
12
modules/home/variables/look/fonts/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.look.fonts = lib.mkOption {
|
||||
type = lib.types.attrs;
|
||||
default = {};
|
||||
};
|
||||
|
||||
config.look.fonts = {
|
||||
main = "Ubuntu";
|
||||
nerd = "UbuntuMono Nerd Font";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue