Started working on darwin integration

This commit is contained in:
Andrea Ciceri 2021-10-05 20:20:51 +02:00
parent ce354185e8
commit 64342dd5c2
No known key found for this signature in database
GPG key ID: AAFD2423608B645B
5 changed files with 66 additions and 1 deletions

View file

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