nixos-config/modules/home/settings/nix/default.nix

12 lines
208 B
Nix
Raw Normal View History

{ unstable, lib, pkgs, ... }:
2025-01-11 14:07:19 -05:00
{
2025-01-22 13:18:35 -05:00
nix = {
package = lib.mkForce pkgs.nix;
registry.unstable.flake = unstable;
2025-01-22 13:18:35 -05:00
settings.experimental-features = [
"nix-command"
"flakes"
];
};
2025-01-11 14:07:19 -05:00
}