mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
15 lines
436 B
Nix
15 lines
436 B
Nix
{ config, lib, ... }: with lib; {
|
|
options.home-manager.users = let
|
|
lightModeExtend = { config, nixos, ... }: {
|
|
gtk.iconTheme.name = mkForce "Papirus-Light";
|
|
base16 = {
|
|
alias.default = "atelier.atelier-cave-light";
|
|
defaultSchemeName = "atelier.atelier-cave-light";
|
|
};
|
|
};
|
|
in mkOption {
|
|
type = types.attrsOf (types.submoduleWith {
|
|
modules = singleton lightModeExtend;
|
|
});
|
|
};
|
|
}
|