nix-dotfiles/nix-darwin/default.nix
sloane 8c320f1a9f
initial commit
Includes setup for MBTA machine and user only
2025-02-14 17:01:00 -05:00

24 lines
702 B
Nix

{ pkgs, ... }:
{
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages = [];
# Necessary for using flakes on this system.
nix.settings.experimental-features = "nix-command flakes";
# Enable alternative shell support in nix-darwin.
# programs.fish.enable = true;
# Set Git commit hash for darwin-version.
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = 6;
# The platform the configuration will be used on.
nixpkgs.hostPlatform = "aarch64-darwin";
environment.shells = [ pkgs.fish ];
programs.fish.enable = true;
}