From a1067ac63e3dbc0a4720dba849e47e617fb1cba4 Mon Sep 17 00:00:00 2001 From: Michael Thomson Date: Wed, 28 Feb 2024 15:38:48 -0500 Subject: [PATCH] remove dev dependencies and added cachix --- hosts/macbook/configuration.nix | 13 +++++++++++++ hosts/macbook/home.nix | 5 +++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/hosts/macbook/configuration.nix b/hosts/macbook/configuration.nix index ab1992f..e888806 100644 --- a/hosts/macbook/configuration.nix +++ b/hosts/macbook/configuration.nix @@ -6,6 +6,19 @@ inputs.home-manager.darwinModules.default ]; + nix.settings = { + trusted-users = ["mthomson"]; + + substituters = [ + "https://cache.nixos.org" + "https://nix-community.cachix.org" + ]; + + trusted-public-keys = [ + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + ]; + }; + users.users.mthomson = { home = "/Users/mthomson"; }; diff --git a/hosts/macbook/home.nix b/hosts/macbook/home.nix index ae93451..f251aab 100644 --- a/hosts/macbook/home.nix +++ b/hosts/macbook/home.nix @@ -16,8 +16,9 @@ btop spotify-player neofetch - nodejs - corepack_latest + jq + fzf + ripgrep ]; programs.home-manager.enable = true;