nixfleet/users/andreaciceri/default.nix
2021-10-11 23:59:13 +02:00

15 lines
312 B
Nix

{ config, lib, pkgs, emacs-overlay, ... }: {
home-manager.users."andreaciceri" = { ... }: {
imports = [
../profiles/bat
../profiles/fzf
../profiles/zsh
../profiles/direnv
../profiles/exa
../profiles/emacs
];
home.packages = with pkgs; [
yarn
];
};
}