aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2023-10-04 02:14:51 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2023-10-04 02:14:51 +0200
commita65fabbbfecaa3500a075d3dec7d77a46dc121f5 (patch)
tree34841549cf22c6fededec4ff2237560e8de9a171
parentb48bbe83febd6a457fef9b43f270e3bd0191f21b (diff)
downloadNix-a65fabbbfecaa3500a075d3dec7d77a46dc121f5.tar.gz
Nix-a65fabbbfecaa3500a075d3dec7d77a46dc121f5.tar.zst
Nix-a65fabbbfecaa3500a075d3dec7d77a46dc121f5.zip
Remove unneeded devshell lines
-rw-r--r--deploy/flake.nix2
-rw-r--r--flake.nix2
2 files changed, 0 insertions, 4 deletions
diff --git a/deploy/flake.nix b/deploy/flake.nix
index f613b19..cb7a973 100644
--- a/deploy/flake.nix
+++ b/deploy/flake.nix
@@ -15,8 +15,6 @@
15 }; 15 };
16 outputs = inputs@{ self, nixpkgs, main-flake, devshell, ... }: { 16 outputs = inputs@{ self, nixpkgs, main-flake, devshell, ... }: {
17 sops-vars-file = (inputs.secrets-local or inputs.secrets).vars-file; 17 sops-vars-file = (inputs.secrets-local or inputs.secrets).vars-file;
18 # FIXME: next line Can be removed in nix 2.16.*
19 devShell.x86_64-linux = self.devShells.x86_64-linux.default;
20 devShells.x86_64-linux.default = devshell.legacyPackages.x86_64-linux.mkShell { 18 devShells.x86_64-linux.default = devshell.legacyPackages.x86_64-linux.mkShell {
21 env = [ 19 env = [
22 { name = "NIX_BUILD_TOP"; value = ""; } 20 { name = "NIX_BUILD_TOP"; value = ""; }
diff --git a/flake.nix b/flake.nix
index e3ed4c9..fe10517 100644
--- a/flake.nix
+++ b/flake.nix
@@ -38,8 +38,6 @@
38 }; 38 };
39 }; 39 };
40 flake = { 40 flake = {
41 # FIXME: next line Can be removed in nix 2.16.*
42 devShell.x86_64-linux = self.devShells.x86_64-linux.default;
43 inherit (mypackages) mylibs sources overlays; 41 inherit (mypackages) mylibs sources overlays;
44 inherit (flakes) subflakes; 42 inherit (flakes) subflakes;
45 }; 43 };