1

Nixos: Add empty color HM module

This commit is contained in:
2024-10-13 15:01:14 +02:00
parent 74b393826c
commit 9c999232e3
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{
config,
lib,
mylib,
...
}:
with lib;
with mylib.modules; let
cfg = config.modules.color;
in {
options.modules.color = import ./options.nix {inherit lib mylib;};
config = {};
}

View File

@ -0,0 +1,13 @@
{
lib,
mylib,
...
}:
with lib;
with mylib.modules; {
scheme = mkOption {
type = types.str;
description = "The color scheme to use";
example = "catppuccin-latte";
};
}

View File

@ -4,6 +4,7 @@
# My own HM modules
./chromium
./color
./firefox
./fish
./hyprland