nixos/home-manager/management.nix

17 lines
257 B
Nix

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