aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-07-25 13:06:37 -0400
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-07-25 13:06:37 -0400
commit97b9b85e8d9744010ea775ef479a172c6719cb0d (patch)
treeef4a243669043f7fae64a2cb20abccd9a64a0d54
parentc1ba1dac61b8c6165480fcf15e604676214bfca6 (diff)
downloadhome-97b9b85e8d9744010ea775ef479a172c6719cb0d.tar.gz
modules/colors: nixfmt tree
-rw-r--r--modules/colors/bright.nix7
-rw-r--r--modules/colors/default-dark.nix7
-rw-r--r--modules/colors/evenok-dark.nix39
-rw-r--r--modules/colors/google-dark.nix7
-rw-r--r--modules/colors/grayscale-dark.nix7
-rw-r--r--modules/colors/grayscale-light.nix7
-rw-r--r--modules/colors/mountain.nix7
-rw-r--r--modules/colors/tomorrow.nix7
8 files changed, 64 insertions, 24 deletions
diff --git a/modules/colors/bright.nix b/modules/colors/bright.nix
index 2b0a18a..561f81b 100644
--- a/modules/colors/bright.nix
+++ b/modules/colors/bright.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
let
cfg = config.modules.colors.bright;
hexColorRegex = ''#([0-9a-fA-F]{3}){1,2}'';
diff --git a/modules/colors/default-dark.nix b/modules/colors/default-dark.nix
index 725ccd3..c6a7ca9 100644
--- a/modules/colors/default-dark.nix
+++ b/modules/colors/default-dark.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
let
cfg = config.modules.colors.default-dark;
hexColorRegex = ''#([0-9a-fA-F]{3}){1,2}'';
diff --git a/modules/colors/evenok-dark.nix b/modules/colors/evenok-dark.nix
index 33c0f86..814362d 100644
--- a/modules/colors/evenok-dark.nix
+++ b/modules/colors/evenok-dark.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
let
cfg = config.modules.colors.evenok-dark;
hexColorRegex = ''#([0-9a-fA-F]{3}){1,2}'';
@@ -13,22 +18,22 @@ in
config = lib.mkIf cfg.enable {
modules.scheme = {
name = "base16-evenok-dark";
- base00 = "#000000";
- base01 = "#202020";
- base02 = "#303030";
- base03 = "#505050";
- base04 = "#b0b0b0";
- base05 = "#d0d0d0";
- base06 = "#e0e0e0";
- base07 = "#ffffff";
- base08 = "#f5708a";
- base09 = "#ee8122";
- base0A = "#b8a300";
- base0B = "#54bc5c";
- base0C = "#00bab3";
- base0D = "#00aff2";
- base0E = "#9095ff";
- base0F = "#d47ada";
+ base00 = "#000000";
+ base01 = "#202020";
+ base02 = "#303030";
+ base03 = "#505050";
+ base04 = "#b0b0b0";
+ base05 = "#d0d0d0";
+ base06 = "#e0e0e0";
+ base07 = "#ffffff";
+ base08 = "#f5708a";
+ base09 = "#ee8122";
+ base0A = "#b8a300";
+ base0B = "#54bc5c";
+ base0C = "#00bab3";
+ base0D = "#00aff2";
+ base0E = "#9095ff";
+ base0F = "#d47ada";
};
};
}
diff --git a/modules/colors/google-dark.nix b/modules/colors/google-dark.nix
index 850ca8b..d8fe410 100644
--- a/modules/colors/google-dark.nix
+++ b/modules/colors/google-dark.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
let
cfg = config.modules.colors.google-dark;
hexColorRegex = ''#([0-9a-fA-F]{3}){1,2}'';
diff --git a/modules/colors/grayscale-dark.nix b/modules/colors/grayscale-dark.nix
index 081bd43..e21c137 100644
--- a/modules/colors/grayscale-dark.nix
+++ b/modules/colors/grayscale-dark.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
let
cfg = config.modules.colors.grayscale-dark;
hexColorRegex = ''#([0-9a-fA-F]{3}){1,2}'';
diff --git a/modules/colors/grayscale-light.nix b/modules/colors/grayscale-light.nix
index 959e2d2..38e5753 100644
--- a/modules/colors/grayscale-light.nix
+++ b/modules/colors/grayscale-light.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
let
cfg = config.modules.colors.grayscale-light;
hexColorRegex = ''#([0-9a-fA-F]{3}){1,2}'';
diff --git a/modules/colors/mountain.nix b/modules/colors/mountain.nix
index 0158b8f..d2189fb 100644
--- a/modules/colors/mountain.nix
+++ b/modules/colors/mountain.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
let
cfg = config.modules.colors.mountain;
hexColorRegex = ''#([0-9a-fA-F]{3}){1,2}'';
diff --git a/modules/colors/tomorrow.nix b/modules/colors/tomorrow.nix
index 9cfcb25..d6d68fb 100644
--- a/modules/colors/tomorrow.nix
+++ b/modules/colors/tomorrow.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
let
cfg = config.modules.colors.tomorrow;
hexColorRegex = ''#([0-9a-fA-F]{3}){1,2}'';