Skip to content

Commit

Permalink
fix: podman cask -> nix-darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Aug 10, 2024
1 parent 32568d1 commit 011ca11
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
3 changes: 1 addition & 2 deletions machines/sashimi/brew.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ in
homebrew = {
enable = true;
caskArgs.require_sha = true;
brews = [ "podman" ];
brews = [ ];
casks = [
"1password"
(skipSha "affinity-designer")
Expand Down Expand Up @@ -49,6 +49,5 @@ in
autoUpdate = true;
upgrade = true;
};
taps = [ "homebrew/cask" ];
};
}
11 changes: 11 additions & 0 deletions machines/sashimi/default.nix
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{ pkgs, ... }:
{
imports = [ ./brew.nix ];

Expand All @@ -10,4 +11,14 @@
latitude = 48.210033;
longitude = 16.363449;
};

environment = {
systemPackages = with pkgs; [
podman
podman-compose
podman-tui
qemu
];
pathsToLink = [ "/share/qemu" ];
};
}

0 comments on commit 011ca11

Please sign in to comment.