- Update installer to use git+https://git.bemagri.xyz/bernardo/Nomarchy.git - Remove redundant bundling/copying of the engine to /etc/nixos/nomarchy - Expose all themes via xdg.dataFile for script accessibility - Update theme scripts to resolve directories via local share instead of hardcoded system paths - Update documentation to reflect the new remote-first architecture
14 lines
361 B
Nix
14 lines
361 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
xdg.configFile."nomarchy/current/theme" = {
|
|
source = ../../themes/${config.nomarchy.theme};
|
|
recursive = true;
|
|
};
|
|
|
|
xdg.configFile."nomarchy/current/theme.name".text = config.nomarchy.theme;
|
|
|
|
# Expose all themes to the system via local share for script accessibility
|
|
xdg.dataFile."nomarchy/themes".source = ../../themes;
|
|
}
|