6 lines
159 B
Nix
6 lines
159 B
Nix
{ pkgs, ... }:
|
|
{
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
services.nix-daemon.enable = true;
|
|
programs.nix-index.enable = true;
|
|
}
|