nix fmt: gone full nix

Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
This commit is contained in:
s0me1newithhand7s 2025-10-15 12:26:33 +03:00
parent b2c68d3e76
commit b1e010ca53
No known key found for this signature in database
3 changed files with 8 additions and 7 deletions

View file

@ -235,12 +235,18 @@
text = ''
${nixpkgs.lib.getExe nixpkgs.legacyPackages.x86_64-linux.alejandra} \
--experimental-config \
${self}/.github/workflows/alejandra.toml \
${nixpkgs.legacyPackages.x86_64-linux.writeText "alejandra.toml" ''
indentation = "FourSpaces"
''} \
--check \
${self} && ${nixpkgs.lib.getExe nixpkgs.legacyPackages.x86_64-linux.statix} \
check \
--config \
${self}/.github/workflows/statix.toml \
${nixpkgs.legacyPackages.x86_64-linux.writeText "statix.toml" ''
disabled = [
"empty_pattern"
]
''} \
${self} && ${nixpkgs.lib.getExe nixpkgs.legacyPackages.x86_64-linux.deadnix} \
--fail \
${self}
@ -248,7 +254,6 @@
};
};
homeConfigurations = {
hand7s = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;