diff --git a/docs/ROADMAP.md b/docs/ROADMAP.md index 153a608..c7ca112 100644 --- a/docs/ROADMAP.md +++ b/docs/ROADMAP.md @@ -41,6 +41,8 @@ Guardrails (apply when adding anything): - **Optional `nomarchy-installer-vm`** rebuilt as a real flake app (not a one-off shell script) so users can install Nomarchy into a libvirt VM declaratively. - **Surface support module** via the relevant `nixos-hardware` profile + Surface kernel patches behind a `nomarchy.hardware.isSurface` toggle. - **Consolidate palette imports in `flake.nix` via `nomarchyLib`.** `flake.nix:79-80` re-imports `./themes/palettes` and recomputes `themeNames` even though `lib/default.nix` already exports both. Two computations, same result today — drift risk tomorrow. Import `nomarchyLib = import ./lib { inherit lib; }` once and use `nomarchyLib.{palettes,themeNames}` to make `lib/default.nix` the single source of truth for the theme list. +- **Decide what to do about `features/apps/chromium/Default/Preferences`.** The module deploys a static 204-byte `Default/Preferences` (setting `extensions.theme.use_system = false`, `browser.theme.color_scheme = 2`) into chromium's mutable profile directory via Home Manager symlink. Chromium expects to write that file at runtime, so either the symlink is silently replaced on first save (losing the static defaults) or the write fails silently. The real chromium theming work happens via managed policies in `core/system/browser.nix`. Probably the user-profile deployment should be removed; needs someone with chromium-internals knowledge to confirm before deletion. +- **`themes/templates/*.tpl` — decide what these are for.** Eleven mustache-style templates (`alacritty.toml.tpl`, `btop.theme.tpl`, `kitty.conf.tpl`, etc.) are deployed to `~/.local/share/nomarchy/templates/` via `themes/engine/files.nix`, but no script in the tree consumes them. Likely vestigial from a pre-stylix templating system. Either delete the directory + the `xdg.dataFile` deployment, or document them as user-reference assets and explain how to use them. ## 3. Pillar: Script & menu audit diff --git a/features/apps/alacritty/config/alacritty.toml b/features/apps/alacritty/config/alacritty.toml deleted file mode 100644 index 3ab3672..0000000 --- a/features/apps/alacritty/config/alacritty.toml +++ /dev/null @@ -1,25 +0,0 @@ -general.import = [ "~/.config/nomarchy/current/theme/alacritty.toml" ] - -[env] -TERM = "xterm-256color" - -[terminal] -osc52 = "CopyPaste" - -[font] -normal = { family = "JetBrainsMono Nerd Font", style = "Regular" } -bold = { family = "JetBrainsMono Nerd Font", style = "Bold" } -italic = { family = "JetBrainsMono Nerd Font", style = "Italic" } -size = 9 - -[window] -padding.x = 14 -padding.y = 14 -decorations = "None" - -[keyboard] -bindings = [ -{ key = "Insert", mods = "Shift", action = "Paste" }, -{ key = "Insert", mods = "Control", action = "Copy" }, -{ key = "Return", mods = "Shift", chars = "\u001B\r" } -] diff --git a/themes/templates/mako.ini.tpl b/themes/templates/mako.ini.tpl deleted file mode 100644 index cdccf73..0000000 --- a/themes/templates/mako.ini.tpl +++ /dev/null @@ -1,5 +0,0 @@ -include=~/.config/nomarchy/default/mako/core.ini - -text-color={{ foreground }} -border-color={{ accent }} -background-color={{ background }}