Files
sydnix/users/crumb/programs/direnv.nix
2025-02-19 18:05:59 -07:00

16 lines
324 B
Nix

{ config, lib, pkgs, ... }:
{
# High-speed Nix support. Note that Lorri has a years-old open issue
# preventing it from starting on boot/login correctly.
#
# Currently unused in favour of nix-direnv.
# services.lorri.enable = true;
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
}