Allow unfree and flakes

This commit is contained in:
Leonora Tindall 2024-02-18 17:44:13 -06:00
parent 5c2120616f
commit 44f62b7719
1 changed files with 6 additions and 0 deletions

View File

@ -53,4 +53,10 @@ in
# Because I want Firefox # Because I want Firefox
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# Because I have to use flakes, barf
nix = {
package = pkgs.nix;
settings.experimental-features = [ "nix-command" "flakes" ];
};
} }