improve programming experience for nix

This commit is contained in:
Noah Masur
2022-06-20 19:51:03 -04:00
parent d0b3be617c
commit 5d3fbd35c9
4 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,8 @@
{ config, pkgs, ... }: {
home-manager.users.${config.user}.home.packages = with pkgs;
[
nixfmt # Nix file formatter
];
}