fix: typos

This commit is contained in:
Leon Schwarzäugl 2024-12-29 11:03:39 +01:00
parent 8d8644e216
commit 114d2be756
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
4 changed files with 27 additions and 29 deletions

View file

@ -123,7 +123,6 @@
inputs@{ self
, nixpkgs
, home-manager
, nix-darwin
, systems
, ...
}:
@ -193,17 +192,17 @@
NIX_CONFIG = "experimental-features = nix-command flakes";
inherit (checks.pre-commit-check) shellHook;
buildInputs = checks.pre-commit-check.enabledPackages;
nativeBuildInputs = with pkgs; [
nix
home-manager
git
just
age
ssh-to-age
sops
statix
deadnix
nixpkgs-fmt
nativeBuildInputs = [
pkgs.nix
pkgs.home-manager
pkgs.git
pkgs.just
pkgs.age
pkgs.ssh-to-age
pkgs.sops
pkgs.statix
pkgs.deadnix
pkgs.nixpkgs-fmt
];
};
}