mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
12 lines
246 B
Nix
12 lines
246 B
Nix
{ config, lib, ... }: with lib; let
|
|
lightModeExtend = { config, nixos, ... }: {
|
|
gtk.iconTheme.name = mkForce "Papirus-Light";
|
|
base16 = {
|
|
defaultSchemeName = mkForce "light";
|
|
};
|
|
};
|
|
in {
|
|
home-manager.sharedModules = [
|
|
lightModeExtend
|
|
];
|
|
}
|