I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
234 B

  1. { pkgs, ... }:
  2. {
  3. nix = {
  4. package = pkgs.nixUnstable;
  5. extraOptions = ''
  6. experimental-features = nix-command flakes
  7. '';
  8. };
  9. nixpkgs = {
  10. config = { allowUnfree = true; };
  11. overlays = [ ];
  12. };
  13. # ...
  14. }