Files
nixos/apps/matugen/home.nix
T
kenji 46c08d95ec add
2025-12-27 10:51:09 -06:00

19 lines
399 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
matugen
psmisc # for killall
];
home.file.".config/matugen/config.toml" = {
source = ./config.toml;
};
home.file.".config/matugen/templates" = {
source = ./templates;
recursive = true;
};
programs.ghostty.settings.theme = "matugen";
wayland.windowManager.hyprland.settings.extraConfig = ''source ./matugen.conf'';
}