12 lines
185 B
Nix
12 lines
185 B
Nix
# Migrate from an existing Homebrew installation
|
|
|
|
{ pkgs, ... }:
|
|
{
|
|
nix-homebrew = {
|
|
enable = true;
|
|
enableRosetta = true;
|
|
autoMigrate = true;
|
|
user = "yourname";
|
|
};
|
|
}
|