From 9fab21ef1568b84d1e80f14ef5bbc44492ac3681 Mon Sep 17 00:00:00 2001 From: chloe Date: Thu, 25 Sep 2025 17:15:35 +0200 Subject: [PATCH] less repetitive writing --- shared/default.nix | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/shared/default.nix b/shared/default.nix index d45cdee..4772991 100644 --- a/shared/default.nix +++ b/shared/default.nix @@ -10,15 +10,16 @@ imports = [ ./ssh.nix ]; - environment.systemPackages = [ - pkgs.curl - pkgs.unzip - pkgs.kitty.terminfo - pkgs.foot.terminfo - pkgs.kittysay - pkgs.tmux - pkgs.fzf - pkgs.fastfetch + environment.systemPackages = with pkgs; [ + curl + unzip + kitty.terminfo + foot.terminfo + kittysay + tmux + fzf + fastfetch + dnsutils ]; environment.variables.EDITOR = "nvim";