templating
This commit is contained in:
parent
09ad3d10e7
commit
0e320591ed
3 changed files with 36 additions and 3 deletions
|
@ -4,7 +4,17 @@
|
||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
|
inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
|
||||||
repo_root = "../../..";
|
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 {
|
in {
|
||||||
home.file = {
|
home.file = {
|
||||||
"/.zsh.d/" = {
|
"/.zsh.d/" = {
|
||||||
|
@ -15,9 +25,22 @@ in {
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
"bin/git-sync".source = ./${repo_root}/git-sync;
|
"bin/git-sync".source = ./${repo_root}/git-sync;
|
||||||
".cargo/config.toml".source = pkgs.substituteAll {
|
".cargo/config.toml".source = (pkgs.formats.toml {}).generate "cargo-config" {
|
||||||
src = ./${repo_root}/cargo/config.toml.nixtemplate;
|
net = {
|
||||||
profileDir = config.home.profileDirectory;
|
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;
|
".ideavimrc".source = ./${repo_root}/ideavim/ideavimrc;
|
||||||
};
|
};
|
||||||
|
@ -37,6 +60,13 @@ in {
|
||||||
"erdtree/.erdtreerc".source = ./${repo_root}/erdtree/erdtreerc;
|
"erdtree/.erdtreerc".source = ./${repo_root}/erdtree/erdtreerc;
|
||||||
"kitty/kitty.conf".source = ./${repo_root}/kitty/kitty.conf;
|
"kitty/kitty.conf".source = ./${repo_root}/kitty/kitty.conf;
|
||||||
"lsd/config.yaml".source = ./${repo_root}/lsd/config.yaml;
|
"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;
|
"ov/config.yaml".source = ./${repo_root}/ov/ov-less.yaml;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,6 +51,7 @@ in {
|
||||||
litecli
|
litecli
|
||||||
magic-wormhole-rs
|
magic-wormhole-rs
|
||||||
ncdu
|
ncdu
|
||||||
|
neovide
|
||||||
ov
|
ov
|
||||||
pandoc
|
pandoc
|
||||||
parallel
|
parallel
|
||||||
|
|
|
@ -88,6 +88,8 @@ in {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
exa = "eza -l --git";
|
exa = "eza -l --git";
|
||||||
|
ls = "exa";
|
||||||
|
nv = "neovide";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue