diff --git a/hosts/pinwheel/home.nix b/hosts/pinwheel/home.nix index 5a87760..a3ae099 100644 --- a/hosts/pinwheel/home.nix +++ b/hosts/pinwheel/home.nix @@ -11,7 +11,6 @@ home.homeDirectory = "/home/alex"; home.packages = [ - pkgs.tig pkgs.onlyoffice-bin pkgs.wdisplays pkgs.teams-for-linux diff --git a/hosts/pinwheel/modules/git/default.nix b/hosts/pinwheel/modules/git/default.nix index d1d1b0e..fed662d 100644 --- a/hosts/pinwheel/modules/git/default.nix +++ b/hosts/pinwheel/modules/git/default.nix @@ -1,4 +1,4 @@ -{ lib, config, ... }: +{ pkgs, lib, config, ... }: let enabled = config.mod.git.enable; in @@ -18,6 +18,8 @@ in { path = ./gitconfig; } ]; }; + + home.packages = [ pkgs.tig ]; }; }; }