Update nixpkgs-u and simplified deployment

This commit is contained in:
Filippo Berto 2022-12-29 13:20:33 +01:00
parent e4c1f6622e
commit b75cb134a7
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
2 changed files with 5 additions and 7 deletions

View file

@ -70,7 +70,7 @@
basic = with flake-utils.lib; eachDefaultSystem (system:
let
pkgs = import nixpkgs-u { inherit system config overlays; };
pkgs = import nixpkgs { inherit system config overlays; };
in
{
formatter = pkgs.nixpkgs-fmt;
@ -88,9 +88,7 @@
};
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
deploy-rs.packages.${system}.deploy-rs
];
buildInputs = [ deploy-rs.packages.${system}.deploy-rs ];
shellHook = ''
${self.checks.${system}.pre-commit-check.shellHook}
'';