Commit 1d060d25c5ca
Changed files (3)
shells
users
vincent
dev
shells/osp.nix
@@ -1,4 +1,4 @@
-{ pkgs, ... }:
+{ pkgs ? import <nixpkgs> { }, ... }:
let
go = pkgs.go_1_18;
in
shells/tekton.nix
@@ -1,4 +1,4 @@
-{ pkgs, ... }:
+{ pkgs ? import <nixpkgs> { }, ... }:
let
go = pkgs.go_1_18;
in
users/vincent/dev/default.nix
@@ -43,8 +43,8 @@
# FIXME move this to a "work.redhat" configuration.
# Upstream Tekton
home.file."src/tektoncd/.envrc".source = ./src/tektoncd.envrc;
- home.file."src/tektoncd/shell.nix".source = ./src/tektoncd.shell.nix;
+ home.file."src/tektoncd/shell.nix".source = ../../../shells/tekton.nix;
# Downstream OSP
home.file."src/osp/.envrc".source = ./src/osp.envrc;
- home.file."src/osp/shell.nix".source = ./src/osp.shell.nix;
+ home.file."src/osp/shell.nix".source = ../../../shells/osp.nix;
}