hosts: move git to its own module

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2025-06-29 17:40:25 +05:30
parent 30934f006c
commit f9ed56123d
3 changed files with 5 additions and 27 deletions

View File

@@ -7,6 +7,7 @@ let
./nix.nix
./programs/zsh
./programs/gnupg
./programs/git
{
_module.args = globalArgs;
}
@@ -15,7 +16,6 @@ let
./programs/adb
./xorg.nix
./wayland.nix
./desktop-pkgs.nix
./sound.nix
];
serverModules = [ ./minimal.nix ];

View File

@@ -1,26 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
tmux
bc
gnumake
pciutils
usbutils
ntfs3g
python3
htop
wget
ripgrep
kbd
gcc
vulkan-tools
vulkan-headers
jq
dconf
];
programs = {
git.enable = true;
};
}

View File

@@ -0,0 +1,4 @@
{ ... }:
{
programs.git.enable = true;
}