feat: Add new system packages and update flake.lock

New system packages including azure-cli, cloudflare-warp, desktop-file-utils, and kubectl have been added to the environment. The systemd has been configured for cloudflare-warp. Additionally, version updates were made in flake.lock with revised hashes and revisions.
This commit is contained in:
Harald Hoyer 2024-06-24 16:13:56 +02:00
parent ff726a73c9
commit d0e539f23f
2 changed files with 19 additions and 9 deletions

View file

@ -14,6 +14,16 @@ with lib.metacfg;
user.extraGroups = [ "docker" ];
};
environment.systemPackages = with pkgs; [
azure-cli
cloudflare-warp
desktop-file-utils
kubectl
];
systemd.packages = [ pkgs.cloudflare-warp ]; # for warp-cli
systemd.targets.multi-user.wants = [ "warp-svc.service" ]; # causes warp-svc to be started automatically
virtualisation = {
docker.enable = true;
libvirtd.enable = true;