mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 12:03:52 +00:00
11 lines
265 B
Nix
11 lines
265 B
Nix
{ lib, ... }:
|
|
{
|
|
xdg.configFile."gcloud/active_config".text = "default\n";
|
|
|
|
xdg.configFile."gcloud/configurations/config_default".text = lib.generators.toINI { } {
|
|
core = {
|
|
account = "rathiharivansh@gmail.com";
|
|
project = "hari-gc";
|
|
};
|
|
};
|
|
}
|