From a49c49cc0200d72b8624dcf5cb892a8cdfe62cd8 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Mon, 2 Sep 2024 22:36:16 +0200 Subject: [PATCH] pinwheel: Add `nixfmt` to `nix` module --- hosts/pinwheel/modules/nix/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/pinwheel/modules/nix/default.nix b/hosts/pinwheel/modules/nix/default.nix index 13fb5c4..46045dc 100644 --- a/hosts/pinwheel/modules/nix/default.nix +++ b/hosts/pinwheel/modules/nix/default.nix @@ -1,6 +1,9 @@ { pkgs, ... }: { home-manager.users.alex = { - home.packages = [ pkgs.nix-tree ]; + home.packages = [ + pkgs.nixfmt-rfc-style + pkgs.nix-tree + ]; }; }