17 lines
646 B
Nix
17 lines
646 B
Nix
{ pkgs, config, lib, ... }:
|
|
{
|
|
imports = [
|
|
#../../modules/nixvim
|
|
../../homes/kylekrein/git.nix
|
|
];
|
|
home.activation = {
|
|
copyFont = let
|
|
font_src = "${pkgs.nerd-fonts.fira-code}/share/fonts/truetype/NerdFonts/FiraCode/FiraCodeNerdFont-Regular.ttf";
|
|
font_dst = "${config.home.homeDirectory}/.termux/font.ttf";
|
|
in lib.hm.dag.entryAfter ["writeBoundary"] ''
|
|
( test ! -e "${font_dst}" || test $(sha1sum "${font_src}"|cut -d' ' -f1 ) != $(sha1sum "${font_dst}" |cut -d' ' -f1)) && $DRY_RUN_CMD install $VERBOSE_ARG -D "${font_src}" "${font_dst}"
|
|
'';
|
|
};
|
|
|
|
home.stateVersion = "24.05";
|
|
}
|