From 9014eb2efb8bed369d31607185979917bb0a31a2 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Thu, 2 Nov 2023 08:20:49 +0100 Subject: [PATCH] pinhweel: Move `tig` to `git` module --- hosts/pinwheel/home.nix | 1 - hosts/pinwheel/modules/git/default.nix | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) 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 ]; }; }; }