pinwheel: Add nixfmt to nix module

This commit is contained in:
Alexander Heldt
2024-09-02 22:36:16 +02:00
parent 15711a903e
commit a49c49cc02

View File

@@ -1,6 +1,9 @@
{ pkgs, ... }:
{
home-manager.users.alex = {
home.packages = [ pkgs.nix-tree ];
home.packages = [
pkgs.nixfmt-rfc-style
pkgs.nix-tree
];
};
}