add nixpkgs override to allow unfree packages

This commit is contained in:
Julian Mutter 2024-02-01 20:20:58 +01:00
parent 7b32822a32
commit 0e205a96d9

View File

@ -38,5 +38,21 @@
title = "Julian's dotfiles";
};
};
# The attribute set specified here will be passed directly to NixPkgs when
# instantiating the package set.
channels-config = {
# Allow unfree packages.
allowUnfree = true;
# Allow certain insecure packages
# permittedInsecurePackages = [ "firefox-100.0.0" ];
# Additional configuration for specific packages.
config = {
# For example, enable smartcard support in Firefox.
# firefox.smartcardSupport = true;
};
};
};
}