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

@ -1427,11 +1427,11 @@
},
"nixpkgs_4": {
"locked": {
"lastModified": 1718437845,
"narHash": "sha256-ZT7Oc1g4I4pHVGGjQFnewFVDRLH5cIZhEzODLz9YXeY=",
"lastModified": 1719145550,
"narHash": "sha256-K0i/coxxTEl30tgt4oALaylQfxqbotTSNb1/+g+mKMQ=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "752c634c09ceb50c45e751f8791cb45cb3d46c9e",
"rev": "e4509b3a560c87a8d4cb6f9992b8915abf9e36d8",
"type": "github"
},
"original": {
@ -1463,11 +1463,11 @@
"snowfall-lib": "snowfall-lib"
},
"locked": {
"lastModified": 1718448997,
"narHash": "sha256-MLMfxZJG6+X22rJHPDvyVockP4RAa+4cOY3WEMVUA58=",
"lastModified": 1718961396,
"narHash": "sha256-RAyAHji/WLd7W/rMlDSC9XO5VREVFRuVo/LK0a9QIEI=",
"owner": "matter-labs",
"repo": "nixsgx",
"rev": "b6c1b5dd0a82b71a8cd9ba840a7955f9213813ab",
"rev": "f6c55e4229be64e146679c2f77e48ba8351ba77b",
"type": "github"
},
"original": {
@ -2556,11 +2556,11 @@
},
"unstable": {
"locked": {
"lastModified": 1718318537,
"narHash": "sha256-4Zu0RYRcAY/VWuu6awwq4opuiD//ahpc2aFHg2CWqFY=",
"lastModified": 1719075281,
"narHash": "sha256-CyyxvOwFf12I91PBWz43iGT1kjsf5oi6ax7CrvaMyAo=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "e9ee548d90ff586a6471b4ae80ae9cfcbceb3420",
"rev": "a71e967ef3694799d0c418c98332f7ff4cc5f6af",
"type": "github"
},
"original": {

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;