nix/homes/modules/programs/iamb/iamb.nix
2026-02-12 18:53:24 +00:00

13 lines
310 B
Nix

{ config, inputs, lib, pkgs, ... }:
let
unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in
{
home.packages = with pkgs; [
inputs.iamb.packages."${stdenv.hostPlatform.system}".default
];
xdg.configFile."iamb/config.toml" = {
source = ./config.toml;
};
}