nixos-config/modules/cli/kubernetes.nix

7 lines
136 B
Nix
Raw Normal View History

2023-12-21 06:38:32 +00:00
{ pkgs, ... }:
2023-04-30 06:11:27 +00:00
{
2023-05-22 06:52:56 +00:00
environment.systemPackages = with pkgs; [
2023-05-31 01:24:17 +00:00
# dedicated script, because bash aliases dont work with `watch`
2023-04-30 06:11:27 +00:00
];
}