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

@ -1 +0,0 @@
indentation = "FourSpaces"

View file

@ -1,3 +0,0 @@
disabled = [
"empty_pattern"
]

View file

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