dotfiles/modules/programming/nix.nix
2022-06-20 19:51:03 -04:00

9 lines
139 B
Nix

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