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

17 lines
354 B
Nix
Raw Normal View History

2025-02-25 02:14:16 -05:00
{ config, lib, pkgs, unstable, ... }:
2025-01-11 14:07:19 -05:00
{
2025-01-22 13:18:35 -05:00
nix = {
package = lib.mkForce pkgs.nix;
2025-01-22 13:18:35 -05:00
settings.experimental-features = [
"nix-command"
"flakes"
];
2025-02-25 02:14:16 -05:00
registry.unstable.flake = unstable;
};
_module.args.pkgsUnstable = import unstable {
inherit (pkgs.stdenv.hostPlatform) system;
inherit (config.nixpkgs) config;
2025-01-22 13:18:35 -05:00
};
2025-01-11 14:07:19 -05:00
}