nixfleet/users/andreaciceri/default.nix
2021-10-05 20:20:51 +02:00

15 lines
272 B
Nix

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