- 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.
23 lines
506 B
Nix
23 lines
506 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./system/options.nix
|
|
./system/state.nix
|
|
./system/systemd.nix
|
|
./system/virtualization.nix
|
|
./system/fonts.nix
|
|
../themes/engine/plymouth.nix
|
|
../themes/engine/sddm.nix
|
|
./system/hardware.nix
|
|
./system/audio.nix
|
|
./system/bluetooth.nix
|
|
./system/network.nix
|
|
../features/apps/browser.nix
|
|
./system/impermanence.nix
|
|
../features/apps/makima.nix
|
|
];
|
|
|
|
time.timeZone = lib.mkDefault config.nomarchy.system.timezone;
|
|
}
|