dotfiles/modules/programming/nix.nix
2022-07-07 07:49:48 -04:00

13 lines
160 B
Nix

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