Initial commit
This commit is contained in:
23
modules/features/dev-tools.nix
Normal file
23
modules/features/dev-tools.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
lux.dev-tools.homeManager =
|
||||
{ config, ... }:
|
||||
{
|
||||
home.sessionVariables.CARGO_HOME = "${config.xdg.dataHome}/cargo";
|
||||
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
programs.lazygit = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
|
||||
programs.jq.enable = true;
|
||||
programs.bun.enable = true;
|
||||
programs.ripgrep.enable = true;
|
||||
programs.uv.enable = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user