diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2024-03-20 10:48:45 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2024-03-20 10:48:45 -0400 | 
| commit | e7c4b9ea5bc2cd2d0d28c0daeaf2e7271b317368 (patch) | |
| tree | 655a74b3ce01ef8629c6680d9eed55363bf77f4a /org | |
| parent | mark modules as @safe: (& identify what is not) (diff) | |
flake.nix cosmetic minordoc-reform_v0.14.0
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 = [ | 
