aboutsummaryrefslogtreecommitdiff
path: root/flake/formatter.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-12-13 17:05:13 -0800
committerFranck Cuny <franck@fcuny.net>2025-12-13 17:06:49 -0800
commit548f31ae7f81b4ef262b8ecee11918583eb87cd6 (patch)
tree643a5996f1b1d20c78c2f689ba4b1092f81e9584 /flake/formatter.nix
parentremove abstractions for managing users (diff)
downloadinfra-548f31ae7f81b4ef262b8ecee11918583eb87cd6.tar.gz
stop using flake-parts to simplify the setup
It's a lot of abstractions that are hard to fully understand, I don't need that complexity for my setup.
Diffstat (limited to '')
-rw-r--r--flake/formatter.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/flake/formatter.nix b/flake/formatter.nix
deleted file mode 100644
index 44c0190..0000000
--- a/flake/formatter.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ inputs, ... }:
-{
- perSystem =
- { pkgs, ... }:
- let
- treefmtEval = inputs.treefmt-nix.lib.evalModule pkgs {
- projectRootFile = "flake.nix";
- programs = {
- nixfmt.enable = true;
- deadnix.enable = true;
- };
- };
- in
- {
- formatter = treefmtEval.config.build.wrapper;
- };
-}