chore: switch default theme from summer-night to nord
Both the system option (`core/system/options.nix:theme`) and the home-side state evaluator (`core/home/state.nix`) defaulted to "summer-night". The installer-written state.json now seeds "nord" (see preceding installer commit), and `lib/state-schema.nix` already defaults to "nord". Align the hardcoded fallbacks here so a missing or blank state file lands on the same theme everywhere instead of a now-inconsistent split. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -19,7 +19,7 @@ in
|
||||
skipVsCodeTheme = togglesState.skipVsCodeTheme or false;
|
||||
};
|
||||
nightlightTemperature = togglesState.nightlightTemperature or 4000;
|
||||
theme = togglesState.theme or "summer-night";
|
||||
theme = togglesState.theme or "nord";
|
||||
wallpaper = togglesState.wallpaper or "";
|
||||
panelPosition = togglesState.panelPosition or "top";
|
||||
hyprland = {
|
||||
@@ -31,11 +31,11 @@ in
|
||||
|
||||
# Derived properties from the theme directory
|
||||
isLightMode = nomarchyLib.isThemeLightMode {
|
||||
themeName = togglesState.theme or "summer-night";
|
||||
themeName = togglesState.theme or "nord";
|
||||
inherit assetsPath;
|
||||
};
|
||||
iconsTheme = nomarchyLib.getIconsTheme {
|
||||
themeName = togglesState.theme or "summer-night";
|
||||
themeName = togglesState.theme or "nord";
|
||||
inherit assetsPath;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user