15 lines
312 B
Nix
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
|
|
];
|
|
};
|
|
}
|