]> git.immae.eu Git - perso/Immae/Config/Nix.git/commitdiff
Remove suggestion about local secrets
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Wed, 4 Oct 2023 00:15:53 +0000 (02:15 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Wed, 4 Oct 2023 00:15:53 +0000 (02:15 +0200)
deploy/flake.nix

index cb7a9736de61f8a3a000ac360644f09209324cbe..f77528cb64a502689144d7e1fb697277ab7938e5 100644 (file)
@@ -2,9 +2,6 @@
   inputs = {
     devshell.url = "github:numtide/devshell";
     nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable?dir=lib";
-    # Uncomment temporarily below value and replace with local path to
-    # your secrets, and replace "follows" key below to use it.
-    #secrets-local.url = "path:/home/immae/projets/mes_sites/nixops-secrets";
     secrets = {
       type = "git";
       url = "git+ssh://gitolite@git.immae.eu/perso/Immae/Config/Nix/Nixops/Secrets";
@@ -14,7 +11,7 @@
     main-flake.inputs.secrets.follows = "secrets";
   };
   outputs = inputs@{ self, nixpkgs, main-flake, devshell, ... }: {
-    sops-vars-file = (inputs.secrets-local or inputs.secrets).vars-file;
+    sops-vars-file = inputs.secrets.vars-file;
     devShells.x86_64-linux.default = devshell.legacyPackages.x86_64-linux.mkShell {
       env = [
         { name = "NIX_BUILD_TOP"; value = ""; }