From 1de852f23c5eb259581d9e89fd54ae5f3e8c43b2 Mon Sep 17 00:00:00 2001 From: Michael Thomson Date: Tue, 5 Mar 2024 09:23:23 -0500 Subject: [PATCH] update --- hosts/macbook/configuration.nix | 13 ++++++++++++- hosts/macbook/home.nix | 1 + .../neovim/nvim/lua/plugins/ts-error-translator.lua | 3 +++ 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 modules/home-manager/neovim/nvim/lua/plugins/ts-error-translator.lua diff --git a/hosts/macbook/configuration.nix b/hosts/macbook/configuration.nix index e888806..a394ff7 100644 --- a/hosts/macbook/configuration.nix +++ b/hosts/macbook/configuration.nix @@ -2,10 +2,12 @@ { imports = - [ # Include the results of the hardware scan. + [ inputs.home-manager.darwinModules.default ]; + nixpkgs.config.allowUnfree = true; + nix.settings = { trusted-users = ["mthomson"]; @@ -29,6 +31,15 @@ hello ]; + services = { + skhd = { + enable = true; + skhdConfig = '' + cmd - return : wezterm + ''; + }; + }; + home-manager = { extraSpecialArgs = { inherit inputs; }; useGlobalPkgs = true; diff --git a/hosts/macbook/home.nix b/hosts/macbook/home.nix index 8c6ca7c..29ec9cf 100644 --- a/hosts/macbook/home.nix +++ b/hosts/macbook/home.nix @@ -18,6 +18,7 @@ home.packages = with pkgs; [ btop + spotify spotify-player neofetch jq diff --git a/modules/home-manager/neovim/nvim/lua/plugins/ts-error-translator.lua b/modules/home-manager/neovim/nvim/lua/plugins/ts-error-translator.lua new file mode 100644 index 0000000..d771e5d --- /dev/null +++ b/modules/home-manager/neovim/nvim/lua/plugins/ts-error-translator.lua @@ -0,0 +1,3 @@ +return { + 'dmmulroy/ts-error-translator.nvim' +}