Commit d7426d339913

Vincent Demeester <vincent@sbr.pm>
2022-11-08 09:54:59
Remove centralized shells
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 004cd3a
Changed files (2)
shells
users
vincent
shells/osp.nix
@@ -1,4 +1,10 @@
-{ pkgs ? import <nixpkgs> { }, ... }:
+{ pkgs ? import <nixpkgs> {
+    overlays = [
+      (self: super: { })
+    ];
+  }
+, ...
+}:
 let
   go = pkgs.go_1_18;
 in
users/vincent/dev/default.nix
@@ -43,13 +43,13 @@
 
   # FIXME move this to a "work.redhat" configuration.
   # Upstream Tekton
-  home.file."src/tektoncd/.envrc".text = ''
-    eval "$(lorri direnv)"
-  '';
-  home.file."src/tektoncd/shell.nix".source = ../../../shells/tekton.nix;
+  # home.file."src/tektoncd/.envrc".text = ''
+  #   eval "$(lorri direnv)"
+  # '';
+  # home.file."src/tektoncd/shell.nix".source = ../../../shells/tekton.nix;
   # Downstream OSP
-  home.file."src/osp/.envrc".text = ''
-    eval "$(lorri direnv)"
-  '';
-  home.file."src/osp/shell.nix".source = ../../../shells/osp.nix;
+  # home.file."src/osp/.envrc".text = ''
+  #   eval "$(lorri direnv)"
+  # '';
+  # home.file."src/osp/shell.nix".source = ../../../shells/osp.nix;
 }