mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
17 lines
409 B
Nix
17 lines
409 B
Nix
{ config, pkgs, inputs, ... }: {
|
|
services.nix-daemon.enable = true;
|
|
nix = {
|
|
registry = {
|
|
nixpkgs.flake = inputs.nixpkgs;
|
|
nur.flake = inputs.nur;
|
|
arc.flake = inputs.arcexprs;
|
|
ci.flake = inputs.ci;
|
|
};
|
|
package = pkgs.nixUnstable;
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
keep-derivations = true
|
|
keep-outputs = true
|
|
'';
|
|
};
|
|
}
|