mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
e0f2949c98
NixOS/nixpkgs@03310df843 disabled flake support by default, so we now need to build a custom package and use it if the user wants to `use flake` successfully. This should fix #2087.
18 lines
385 B
Nix
18 lines
385 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.bash.enable = true;
|
|
programs.direnv.enable = true;
|
|
programs.direnv.nix-direnv.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.bashrc
|
|
assertFileRegex \
|
|
home-files/.config/direnv/direnvrc \
|
|
'source /nix/store/.*nix-direnv.*/share/nix-direnv/direnvrc'
|
|
'';
|
|
};
|
|
}
|