1
1
mirror of https://github.com/divnix/digga.git synced 2025-01-03 22:08:36 +03:00

nix: remove ca-references feature flag

This experimental feature has been removed from Nix in unstable
versions recently, and with this set, it now pops up an unsupressable
warning message. Not so bad on its own, but when using <kbd>Tab</kbd>
completion it corrupts the output.
This commit is contained in:
Timothy DeHerrera 2021-12-08 12:59:36 -07:00 committed by Parthiv Seetharaman
parent 8c7118298d
commit 1b9dad8e61
3 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{
description = "DevOS environment configuriguration library.";
nixConfig.extra-experimental-features = "nix-command flakes ca-references";
nixConfig.extra-experimental-features = "nix-command flakes";
nixConfig.extra-substituters = "https://nrdxp.cachix.org https://nix-community.cachix.org";
nixConfig.extra-trusted-public-keys = "nrdxp.cachix.org-1:Fc5PSqY2Jm1TrWfm88l6cvGWwz3s93c6IOifQWnhNW4= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=";

View File

@ -4,7 +4,6 @@ let
experimental-features = [
"flakes"
"nix-command"
"ca-references"
];
substituters = [
"https://nrdxp.cachix.org" # quality of life cache from our CI

View File

@ -101,7 +101,7 @@ devshell.mkShell {
{
name = "NIX_CONFIG";
value =
''extra-experimental-features = nix-command flakes ca-references
''extra-experimental-features = nix-command flakes
extra-substituters = https://nrdxp.cachix.org https://nix-community.cachix.org
extra-trusted-public-keys = nrdxp.cachix.org-1:Fc5PSqY2Jm1TrWfm88l6cvGWwz3s93c6IOifQWnhNW4= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs='';
}