Revert "home-manager: Use minimal module set and import everything else manually"

This reverts commit 0c25e7fd34.

The slightly decreased evaluation time isn't worth the added maintenance burden
This commit is contained in:
SebastianStork 2026-02-19 18:37:58 +01:00
parent 0c25e7fd34
commit 70b8d89311
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
18 changed files with 6 additions and 98 deletions

View file

@ -1,22 +1,5 @@
{ config, lib, ... }:
{
config,
modulesPath,
lib,
...
}:
{
imports = [
"${modulesPath}/programs/git.nix"
"${modulesPath}/programs/lazygit.nix"
"${modulesPath}/programs/delta.nix"
"${modulesPath}/programs/jujutsu.nix"
"${modulesPath}/programs/diff-highlight.nix"
"${modulesPath}/programs/diff-so-fancy.nix"
"${modulesPath}/programs/difftastic.nix"
"${modulesPath}/programs/patdiff.nix"
"${modulesPath}/programs/riff.nix"
];
options.custom.programs.git.enable = lib.mkEnableOption "";
config = lib.mkIf config.custom.programs.git.enable {