mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 08:42:55 +00:00
13 lines
160 B
Nix
13 lines
160 B
Nix
{ config, pkgs, ... }: {
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
home.packages = with pkgs;
|
|
[
|
|
nixfmt # Nix file formatter
|
|
];
|
|
|
|
};
|
|
|
|
}
|