nixos/home-manager/ubuntu.nix

15 lines
315 B
Nix

{ custom, inputs }: { ... }:
{
imports = [
(import "${custom.inputs.self}/home-manager/common" { inherit custom; })
"${custom.inputs.self}/home-manager/software/git"
];
programs.git.userEmail = "andreas@zweili.ch";
programs.bash = {
enable = true;
};
targets.genericLinux.enable = true;
}