nixos/home-manager/ubuntu.nix

15 lines
252 B
Nix
Raw Normal View History

2021-12-28 23:05:17 +01:00
{ ... }:
2021-11-22 14:48:47 +01:00
{
2021-11-18 12:11:46 +01:00
imports = [
2022-06-29 21:43:18 +02:00
"${inputs.self}/home-manager/common"
"${inputs.self}/home-manager/software/git"
2021-11-18 12:11:46 +01:00
];
2021-11-22 14:48:47 +01:00
programs.git.userEmail = "andreas@zweili.ch";
2021-11-22 18:33:36 +01:00
programs.bash = {
enable = true;
};
2021-11-18 12:11:46 +01:00
targets.genericLinux.enable = true;
}