- Fix QEMU syntax and root filesystem conflicts in vm-guest.nix. - Repair numerous broken relative paths and imports across the codebase. - Set 'summer-night' as the default distro theme with full branding integration. - Implement declarative system-wide font installation including the 'nomarchy' font. - Fix Waybar startup by dynamically generating theme-aware CSS. - Restore Hyprland keybindings (Super+Return, Super+Space) and wallpaper loading. - Add missing scripts: nomarchy-launch-walker, nomarchy-toggle-waybar, nomarchy-refresh-config. - Enable UWSM and correctly disable conflicting Hyprland systemd services.
22 lines
632 B
Nix
22 lines
632 B
Nix
{ lib, ... }:
|
|
|
|
let
|
|
nomarchyLib = import ../../lib { inherit lib; };
|
|
systemState = nomarchyLib.readSystemState;
|
|
in
|
|
{
|
|
config.nomarchy.system = {
|
|
dns = systemState.dns or "DHCP";
|
|
customDns = systemState.customDns or [];
|
|
wifi.powersave = systemState.wifi.powersave or true;
|
|
timezone = systemState.timezone or "UTC";
|
|
features = {
|
|
fingerprint = systemState.features.fingerprint or false;
|
|
fido2 = systemState.features.fido2 or false;
|
|
hybridGPU = systemState.features.hybridGPU or false;
|
|
makima = systemState.features.makima or false;
|
|
};
|
|
theme = systemState.theme or "nord";
|
|
};
|
|
}
|