1
0
Fork 0
forked from foxora/nix
flake-foxora/homes/modules/programs/iamb/iamb.nix

14 lines
177 B
Nix
Raw Normal View History

2026-02-12 18:53:24 +00:00
{
2026-02-13 23:27:35 +10:00
inputs,
system,
...
}: {
home.packages = [
inputs.iamb.packages.${system}.default
2026-02-12 18:53:24 +00:00
];
xdg.configFile."iamb/config.toml" = {
source = ./config.toml;
};
}