mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
9fe79591c1
Also removes use of `with lib`.
16 lines
317 B
Nix
16 lines
317 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
|
|
assertFileExists home-files/.config/direnv/lib/hm-nix-direnv.sh
|
|
'';
|
|
};
|
|
}
|