templating

This commit is contained in:
Anthony Cicchetti 2024-03-07 14:43:53 -05:00
parent 09ad3d10e7
commit 0e320591ed
3 changed files with 36 additions and 3 deletions

View file

@ -4,7 +4,17 @@
config,
...
}: let
inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
repo_root = "../../..";
nv_fonts_basic = ["Iosevka Custom"];
nv_fonts_normal =
nv_fonts_basic
++ (
if isLinux
then ["Noto Color Emoji"]
else ["Apple Color Emoji"]
);
nv_fonts_italic = ["Dank Mono"] ++ nv_fonts_basic;
in {
home.file = {
"/.zsh.d/" = {
@ -15,9 +25,22 @@ in {
recursive = true;
};
"bin/git-sync".source = ./${repo_root}/git-sync;
".cargo/config.toml".source = pkgs.substituteAll {
src = ./${repo_root}/cargo/config.toml.nixtemplate;
profileDir = config.home.profileDirectory;
".cargo/config.toml".source = (pkgs.formats.toml {}).generate "cargo-config" {
net = {
git-fetch-with-cli = true;
};
"profile.release" = {
lto = true;
opt-level = 3;
};
# Could avoid setting this at all with another `isLinux` but whatever, doesn't truly matter
"target.x86_64-unknown-linux-gnu" = {
linker = "clang";
rustflags = ["-C" "link-arg=-fuse-ld=${config.home.profileDirectory}/bin/mold"];
};
"registries.crates-io" = {
protocol = "sparse";
};
};
".ideavimrc".source = ./${repo_root}/ideavim/ideavimrc;
};
@ -37,6 +60,13 @@ in {
"erdtree/.erdtreerc".source = ./${repo_root}/erdtree/erdtreerc;
"kitty/kitty.conf".source = ./${repo_root}/kitty/kitty.conf;
"lsd/config.yaml".source = ./${repo_root}/lsd/config.yaml;
"neovide/config.toml".source = (pkgs.formats.toml {}).generate "neovide-config" {
font = {
normal = nv_fonts_normal;
italic = nv_fonts_italic;
size = 14;
};
};
"ov/config.yaml".source = ./${repo_root}/ov/ov-less.yaml;
};
}

View file

@ -51,6 +51,7 @@ in {
litecli
magic-wormhole-rs
ncdu
neovide
ov
pandoc
parallel

View file

@ -88,6 +88,8 @@ in {
}
else {
exa = "eza -l --git";
ls = "exa";
nv = "neovide";
};
};
}