dotfiles/nixos/darwin-configuration.nix
2024-05-21 21:43:28 -07:00

44 lines
894 B
Nix

{ config, pkgs, lib, ... }: {
nix.settings.experimental-features = ["nix-command" "flakes"];
# Path fix for GUI applications.
launchd.user.envVariables.PATH = config.environment.systemPath;
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
git
iterm2
discord
docker
];
homebrew = {
enable = true;
brews = [
"coreutils"
];
casks = [
"microsoft-edge"
"bitwarden"
"tailscale"
"nextcloud"
"nordvpn"
];
};
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
nix.package = pkgs.nix;
# Create /etc/zshrc that loads the nix-darwin environment.
programs.zsh.enable = true;
users.users.jadenmaxwell = {
name = "jadenmaxwell";
home = "/Users/jadenmaxwell";
};
# Used for backwards compatibility.
system.stateVersion = 4;
}