nixfleet/users/andreaciceri/default.nix
Andrea Ciceri 4d356b3a06
Several changes:
- gpg working in darwin
- new git full package
- git settings for darwin (using different account)
- updaded techinque to detect host platform
2021-11-03 18:29:40 +01:00

22 lines
449 B
Nix

{ config, lib, pkgs, emacs-overlay, ... }: {
home-manager.users."andreaciceri" = { ... }: {
imports = [
../profiles/bat
../profiles/fzf
../profiles/zsh
../profiles/git
../profiles/direnv
../profiles/exa
../profiles/emacs
];
home.packages = with pkgs; [
yarn
pinentry_mac
];
programs.gpg = {
homedir = "/Users/andreaciceri/.gnupg";
enable = true;
};
};
}