mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 13:03:45 +00:00
18 lines
249 B
Nix
18 lines
249 B
Nix
{ ... }:
|
|
{
|
|
programs.k9s = {
|
|
enable = true;
|
|
|
|
views = {
|
|
"v1/pods" = {
|
|
columns = [
|
|
"NAME"
|
|
"USER:.metadata.labels.handle"
|
|
"STATUS"
|
|
"READY"
|
|
"AGE"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|