From 86c9561ab33f97ce43fd391e970d2f5c81424747 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Mon, 13 Apr 2026 10:43:11 +0700 Subject: [PATCH] add some packages to server --- devices/home-server/configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/devices/home-server/configuration.nix b/devices/home-server/configuration.nix index 96b5297..21d2b8d 100644 --- a/devices/home-server/configuration.nix +++ b/devices/home-server/configuration.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { imports = [ ./hardware-configuration.nix ]; @@ -7,6 +7,11 @@ "flakes" ]; + environment.systemPackages = with pkgs; [ + git + vim + ]; + services = { adguardhome = { enable = true;