2024-03-18 11:49:35 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2024-04-07 02:09:46 +02:00
|
|
|
imports = [ ../common/nix-settings.nix ];
|
|
|
|
nix.settings.trusted-users = [ "os" ];
|
2024-03-18 11:49:35 +01:00
|
|
|
# List packages installed in system profile. To search by name, run:
|
|
|
|
# $ nix-env -qaP | grep wget
|
|
|
|
environment.systemPackages = [ pkgs.vim ];
|
|
|
|
|
|
|
|
# Use a custom configuration.nix location.
|
|
|
|
# $ darwin-rebuild switch -I darwin-config=$HOME/.config/nixpkgs/darwin/configuration.nix
|
|
|
|
# environment.darwinConfig = "$HOME/.config/nixpkgs/darwin/configuration.nix";
|
|
|
|
|
|
|
|
# Auto upgrade nix package and the daemon service.
|
|
|
|
services.nix-daemon.enable = true;
|
|
|
|
# nix.package = pkgs.nix;
|
|
|
|
|
|
|
|
# Create /etc/bashrc that loads the nix-darwin environment.
|
|
|
|
programs.zsh.enable = true; # default shell on catalina
|
|
|
|
|
|
|
|
# system-wide SSH configuration, used by nix-daemon for remote builders
|
|
|
|
|
|
|
|
# show hidden files
|
|
|
|
system.defaults.NSGlobalDomain.AppleShowAllFiles = true;
|
|
|
|
|
|
|
|
# Used for backwards compatibility, please read the changelog before changing.
|
|
|
|
# $ darwin-rebuild changelog
|
|
|
|
system.stateVersion = 4;
|
|
|
|
nixpkgs.hostPlatform = "aarch64-darwin";
|
|
|
|
}
|