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' +}