diff options
Diffstat (limited to 'org')
| -rw-r--r-- | org/config_nix.org | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/org/config_nix.org b/org/config_nix.org index f1073bd..345a1b3 100644 --- a/org/config_nix.org +++ b/org/config_nix.org @@ -32,8 +32,8 @@    } @ inputs: let      pname = "spine";      version = "0.14.0"; -    shell = ./shell.nix; # ./default.nix; -    devEnv = ./nixDevEnv.sh; # ./shell.nix; # ./default.nix; # ./.envrc; +    shell = ./shell.nix; +    devEnv = ./nixDevEnv.sh;      supportedSystems = ["x86_64-linux"]; # [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];      forAllSystems = nixpkgs.lib.genAttrs supportedSystems;      nixpkgsFor = forAllSystems (system: import nixpkgs {inherit system;}); # nixpkgs instantiated for supported system types @@ -45,8 +45,8 @@      localOverlay = (final: prev: {        ldc = prev.callPackage ./nix-overlays/ldc {  };        dmd = prev.callPackage ./nix-overlays/dmd {  }; -      dub = prev.callPackage ./nix-overlays/dub {  };       # -> ? -      #gdc = prev.callPackage ./nix-overlays/gdc {  };      # empty +      dub = prev.callPackage ./nix-overlays/dub {  }; +      #gdc = prev.callPackage ./nix-overlays/gdc {  };      });      pkgsForSystem = system: import nixpkgs {        overlays = [ | 
