nixos/home-manager/management.nix

20 lines
321 B
Nix
Raw Normal View History

2022-04-11 17:02:23 +02:00
{ inputs, custom, pkgs, ... }:
{
imports = [
(import ./common { inherit custom inputs; })
2022-04-16 15:52:18 +02:00
./software/emacs
./software/email
2022-05-26 11:07:41 +02:00
./software/fzf
2022-04-11 17:02:23 +02:00
./software/git
2022-04-20 11:39:59 +02:00
./software/starship
2022-04-11 17:02:23 +02:00
./software/vim
];
programs.git.userEmail = "andreas@zweili.ch";
programs.bash = {
enable = true;
};
}