fix: podman cask -> nix-darwin

This commit is contained in:
winston 2024-08-11 01:51:49 +02:00
parent 32568d1037
commit 011ca118cc
Signed by: winston
GPG key ID: 3786770EDBC2B481
2 changed files with 12 additions and 2 deletions

View file

@ -16,7 +16,7 @@ in
homebrew = {
enable = true;
caskArgs.require_sha = true;
brews = [ "podman" ];
brews = [ ];
casks = [
"1password"
(skipSha "affinity-designer")
@ -49,6 +49,5 @@ in
autoUpdate = true;
upgrade = true;
};
taps = [ "homebrew/cask" ];
};
}

View file

@ -1,3 +1,4 @@
{ pkgs, ... }:
{
imports = [ ./brew.nix ];
@ -10,4 +11,14 @@
latitude = 48.210033;
longitude = 16.363449;
};
environment = {
systemPackages = with pkgs; [
podman
podman-compose
podman-tui
qemu
];
pathsToLink = [ "/share/qemu" ];
};
}