diff --git a/shell.nix b/shell.nix index 16bd006f..bddd07a2 100644 --- a/shell.nix +++ b/shell.nix @@ -8,17 +8,15 @@ let in # A nixpkgs instance that is grabbed from the pinned nixpkgs commit in the lock file # Useful to avoid using channels when using legacy nix commands -{ pkgs ? import ( - fetchTarball { - url = "https://github.com/nixos/nixpkgs/archive/${lock.rev}.tar.gz"; sha256 = lock.narHash; - } - ) { } -}: { +{ pkgs ? import ( fetchTarball { + url = "https://github.com/nixos/nixpkgs/archive/${lock.rev}.tar.gz"; + sha256 = lock.narHash; + } ) { } }: { default = pkgs.mkShell { NIX_CONFIG = "experimental-features = nix-command flakes"; # imports all files ending in .asc/.gpg sopsPGPKeyDirs = [ - "${toString ./.}/keys/hosts"d + "${toString ./.}/keys/hosts" "${toString ./.}/keys/users" ]; nativeBuildInputs = [