Reformat
This commit is contained in:
parent
a59a56da09
commit
5247a535b1
2 changed files with 165 additions and 164 deletions
|
@ -3,7 +3,8 @@
|
||||||
{ config, lib, pkgs, home-manager, ... }:
|
{ config, lib, pkgs, home-manager, ... }:
|
||||||
|
|
||||||
with lib; with types;
|
with lib; with types;
|
||||||
let named = submodule {
|
let themeType =
|
||||||
|
let named = submodule {
|
||||||
options = {
|
options = {
|
||||||
normal = mkOption { type = str; };
|
normal = mkOption { type = str; };
|
||||||
bright = mkOption { type = str; };
|
bright = mkOption { type = str; };
|
||||||
|
@ -17,7 +18,7 @@ let named = submodule {
|
||||||
slight = mkOption { type = str; };
|
slight = mkOption { type = str; };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
themeType = submodule {
|
in submodule {
|
||||||
options = {
|
options = {
|
||||||
foreground = mkOption { type = special; };
|
foreground = mkOption { type = special; };
|
||||||
background = mkOption { type = special; };
|
background = mkOption { type = special; };
|
||||||
|
|
Loading…
Reference in a new issue