{ pkgs, lib, ... }: let unstable = import {}; tomlGenerate = (pkgs.formats.toml {}).generate "bottom-toml"; in { home.packages = with unstable; [ bottom ]; xdg.configFile."bottom/bottom.toml".source = tomlGenerate { "flags" = { "left_legend" = true; "color" = "nord"; }; }; }