nixos-config/modules/home/settings/nix/default.nix
Jimbo e35d5c36e6 Nix Registry, Telegram
Remove Telegram Desktop and add the Unstable Nix registry
2025-02-18 20:44:04 -05:00

11 lines
208 B
Nix

{ unstable, lib, pkgs, ... }:
{
nix = {
package = lib.mkForce pkgs.nix;
registry.unstable.flake = unstable;
settings.experimental-features = [
"nix-command"
"flakes"
];
};
}