forked from foxora/nix
14 lines
310 B
Nix
14 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;
|
||
|
|
};
|
||
|
|
}
|