Add nix config

This commit is contained in:
Martin
2024-03-25 14:43:39 +01:00
parent 2cdf1bf701
commit a56014849a
14 changed files with 457 additions and 44 deletions

11
config/nix/user/dev.nix Normal file
View File

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
programs.ripgrep.enable = true;
}