nixos/home-manager/profiles/ubuntu.nix

17 lines
265 B
Nix
Raw Normal View History

2023-06-07 20:14:44 +02:00
{ inputs, nixosConfig, ... }:
2021-11-22 14:48:47 +01:00
{
2021-11-18 12:11:46 +01:00
imports = [
2023-06-07 20:27:13 +02:00
"${inputs.self}/home-manager/modules"
2021-11-18 12:11:46 +01:00
];
2021-11-22 14:48:47 +01:00
2023-05-29 14:58:49 +02:00
home.username = nixosConfig.az-username;
2023-06-12 10:10:38 +02:00
programs = {
az-git.enable = true;
bash = {
enable = true;
};
2021-11-22 18:33:36 +01:00
};
2021-11-18 12:11:46 +01:00
targets.genericLinux.enable = true;
}