nixos/home-manager/management.nix
2022-05-26 11:07:41 +02:00

20 lines
321 B
Nix

{ inputs, custom, pkgs, ... }:
{
imports = [
(import ./common { inherit custom inputs; })
./software/emacs
./software/email
./software/fzf
./software/git
./software/starship
./software/vim
];
programs.git.userEmail = "andreas@zweili.ch";
programs.bash = {
enable = true;
};
}