13 lines
310 B
Nix
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;
|
|
};
|
|
}
|