13 lines
140 B
Nix
13 lines
140 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
config = lib.mkIf config.cloud.azure.enable {
|
|
home.packages = with pkgs; [ azure-cli ];
|
|
};
|
|
}
|