nix-stuff/roles/common/programs/nix.nix
2023-06-01 13:07:12 +02:00

15 lines
260 B
Nix
Executable file

{ config, ... }:
{
nix = {
extraOptions = ''
experimental-features = nix-command flakes
'';
registry = {
agenix = {
from = { id = "agenix"; type = "indirect"; };
to = { owner = "ryantm"; repo = "agenix"; type = "github"; };
};
};
};
}