diff options
author | Alex Auvolat <alex@adnab.me> | 2023-01-18 15:25:35 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-01-18 15:25:35 +0100 |
commit | 011e64f047d1cf0108779f3a1516e00478056276 (patch) | |
tree | 1c72580f1955f284afb590ac35cd85b464f8131c /nixpkgs/common.nix | |
parent | 5a3b6d80405c3319089104a6b3120094ce6e25ba (diff) | |
download | user-config-011e64f047d1cf0108779f3a1516e00478056276.tar.gz user-config-011e64f047d1cf0108779f3a1516e00478056276.zip |
Enable direnv and nix deuxfleurs cache
Diffstat (limited to 'nixpkgs/common.nix')
-rw-r--r-- | nixpkgs/common.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nixpkgs/common.nix b/nixpkgs/common.nix index 7ecdb89..75d2ce5 100644 --- a/nixpkgs/common.nix +++ b/nixpkgs/common.nix @@ -1,6 +1,11 @@ { pkgs, ... }: { home.username = "lx"; + programs.direnv = { + enable = true; + enableBashIntegration = true; + }; + programs.bash = { enable = true; shellAliases = { |