16 lines
324 B
Nix
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;
|
|
};
|
|
}
|