diff --git a/flake.nix b/flake.nix index bdf4dd5..e0c76fb 100644 --- a/flake.nix +++ b/flake.nix @@ -230,17 +230,16 @@ // flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs {inherit system;}; in { - devShells.default = with pkgs; - mkShell { - packages = [ - pkgs.rage - pkgs.ssh-to-age - pkgs.age-plugin-yubikey - pkgs.deploy-rs + devShells.default = pkgs.mkShellNoCC { + packages = [ + pkgs.rage + pkgs.ssh-to-age + pkgs.age-plugin-yubikey + pkgs.deploy-rs - agenix.packages.${system}.agenix - ]; - }; + agenix.packages.${system}.agenix + ]; + }; formatter = pkgs.alejandra; });