pinhweel: Move tig to git module

This commit is contained in:
Alexander Heldt
2023-11-02 08:20:49 +01:00
parent c62a4a3e8a
commit 9014eb2efb
2 changed files with 3 additions and 2 deletions

View File

@@ -11,7 +11,6 @@
home.homeDirectory = "/home/alex"; home.homeDirectory = "/home/alex";
home.packages = [ home.packages = [
pkgs.tig
pkgs.onlyoffice-bin pkgs.onlyoffice-bin
pkgs.wdisplays pkgs.wdisplays
pkgs.teams-for-linux pkgs.teams-for-linux

View File

@@ -1,4 +1,4 @@
{ lib, config, ... }: { pkgs, lib, config, ... }:
let let
enabled = config.mod.git.enable; enabled = config.mod.git.enable;
in in
@@ -18,6 +18,8 @@ in
{ path = ./gitconfig; } { path = ./gitconfig; }
]; ];
}; };
home.packages = [ pkgs.tig ];
}; };
}; };
} }