mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-02-23 13:42:05 +00:00
18 lines
509 B
Nix
18 lines
509 B
Nix
|
# This is the meta config file for nixpkgs and nix cli
|
||
|
|
||
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
# Adopted from https://fnordig.de/til/nix/home-manager-allow-unfree.html,
|
||
|
# but we'll also enable it system-wide too.
|
||
|
nixpkgs = {
|
||
|
config = {
|
||
|
allowUnfree = true;
|
||
|
# https://github.com/nix-community/home-manager/issues/2942
|
||
|
allowUnfreePredicate = (_: true);
|
||
|
};
|
||
|
};
|
||
|
|
||
|
# Enable the Flakes feature and the accompanying new nix command-line tool
|
||
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||
|
}
|