dotfiles/modules/programming/nix.nix

9 lines
139 B
Nix
Raw Normal View History

2022-06-20 23:51:03 +00:00
{ config, pkgs, ... }: {
home-manager.users.${config.user}.home.packages = with pkgs;
[
nixfmt # Nix file formatter
];
}