Add cargo module

This commit is contained in:
Erwin Boskma 2023-03-10 12:56:36 +01:00
parent 1e37ae613d
commit 913f94af3c
Signed by: erwin
SSH key fingerprint: SHA256:Vw4O4qA0i5x65Y7yyjDpWDCSMSXAhqT4X7cJ3frdnLY

View file

@ -0,0 +1,27 @@
{ pkgs, config, lib, ... }:
with lib;
let
cfg = config.eboskma.programs.cargo;
tomlFormat = pkgs.formats.toml { };
cargoConfig = types.submodule {
freeformType = tomlFormat.type;
};
in
{
options.eboskma.programs.cargo = {
enable = mkEnableOption "cargo";
settings = mkOption {
description = "Cargo configuration according to https://doc.rust-lang.org/cargo/reference/config.html";
default = { };
type = cargoConfig;
};
};
config = mkIf cfg.enable {
home.file.".cargo/config.toml" = {
source = tomlFormat.generate "cargo-config.toml" cfg.settings;
};
};
}