From c1d4cc4d95aa63b828e9bf9009500ef6a2ab484a Mon Sep 17 00:00:00 2001 From: Haak Saxberg Date: Thu, 14 Apr 2022 21:00:41 -0700 Subject: [PATCH] add some more notes to darwin packages --- nix/system/darwin-configuration.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nix/system/darwin-configuration.nix b/nix/system/darwin-configuration.nix index b23bb60..7ad7cf5 100644 --- a/nix/system/darwin-configuration.nix +++ b/nix/system/darwin-configuration.nix @@ -1,14 +1,24 @@ { config, pkgs, ... }: { + nixpkgs.config.allowUnfree = true; # List packages installed in system profile. To search by name, run: # $ nix-env -qaP | grep wget environment.systemPackages = [ pkgs.vim pkgs.iterm2 + pkgs.obsidian + pkgs.syncthing + pkgs.slack + pkgs._1password + # todo (unsupported on aarch64-darwin): + # pkgs.spotify + # pkgs.firefox + # pkgs.google-chrome ]; + # 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";