Files
frank-nix/hosts/franks-macbook-pro/configuration.nix
T
2026-07-21 13:13:31 -04:00

28 lines
386 B
Nix

{
pkgs,
inputs,
...
}:
let
unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in
{
imports = [
../shared/darwin.nix
];
environment.systemPackages = with pkgs; [
bash-language-server
nil
devenv
];
homebrew.casks = [
"zed"
"firefox"
];
# Don't touch this unless needed.
system.primaryUser = "frank";
}