Wyatt J. Miller
08a543fabe
added fish shellInit, removed top level empty configuration, removed lib.mkIf logic for fish aliases
27 lines
645 B
Nix
27 lines
645 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
homebrew = import ./homebrew.nix // { enable = true; };
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
gnutls
|
|
ripgrep
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
# Auto upgrade nix package and the daemon service.
|
|
services.nix-daemon.enable = true;
|
|
|
|
# Necessary for using flakes on this system.
|
|
nix.settings.experimental-features = "nix-command flakes";
|
|
|
|
# Used for backwards compatibility, please read the changelog before changing.
|
|
# $ darwin-rebuild changelog
|
|
system.stateVersion = 4;
|
|
|
|
# The platform the configuration will be used on.
|
|
nixpkgs.hostPlatform = "aarch64-darwin";
|
|
}
|