Rename mkTarget's 'configElements' argument to 'config' and 'extraOptions' to 'options' to provide a more transparent interface with the underlying Nixpkgs module system.
14 lines
276 B
Nix
14 lines
276 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "forge";
|
|
humanName = "Forge";
|
|
|
|
config =
|
|
{ colors }:
|
|
{
|
|
xdg.configFile."forge/stylesheet/forge/stylesheet.css".source = colors {
|
|
template = ./stylesheet.css.mustache;
|
|
extension = ".css";
|
|
};
|
|
};
|
|
}
|