summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-09-07 17:45:54 -0400
committerseth <[email protected]>2023-09-07 17:45:54 -0400
commit4b8cc38f33256e3eb8234028e26566817eaa0d74 (patch)
treec64f7f90bd1c26158c00ec5f3d1538bb8809feec /flake.nix
parent30b4700d3b838c9f0fecad860aca6b0ec374a747 (diff)
flake: fix formatter
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 28a1bde..e6fdcb4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -34,7 +34,7 @@
"aarch64-darwin"
];
- perSystem = p: {formatter = p.pkgs.alejandra;};
+ perSystem = {pkgs, ...}: {formatter = pkgs.alejandra;};
flake.nixosModules.default = import ./nix/module.nix self;
};