1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 23:00:39 +02:00
oddlama_nix-config/users/myuser/dev/default.nix
2024-11-26 13:34:55 +01:00

32 lines
594 B
Nix

{ pkgs, ... }:
{
imports = [
./direnv.nix
./gdb.nix
./manpager.nix
];
home = {
sessionVariables.CARGO_HOME = "\${HOME}/.local/share/cargo";
sessionVariables.RUSTUP_HOME = "\${HOME}/.local/share/rustup";
persistence."/state".directories = [
".local/share/cargo"
".local/share/rustup"
];
extraOutputsToInstall = [
"man"
"doc"
"devdoc"
];
packages = [
(pkgs.python3.withPackages (p: with p; [ numpy ]))
pkgs.cloc
pkgs.d2
pkgs.gh
pkgs.gh-dash
pkgs.git-lfs
pkgs.jq
];
};
}