15 lines
260 B
Nix
Executable file
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"; };
|
|
};
|
|
};
|
|
};
|
|
}
|