From 7315c0796c2a442e6bae30760807c2ccf1546262 Mon Sep 17 00:00:00 2001 From: Natalie Date: Thu, 10 Apr 2025 20:06:11 -0700 Subject: [PATCH] remove redunancy --- hosts/laptop/configuration.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 9fb6eab..11a565f 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -3,10 +3,10 @@ pkgs, ... }: { - environment.systemPackages = [ - pkgs.home-manager - pkgs.neovim - pkgs.pinentry_mac + environment.systemPackages = with pkgs; [ + home-manager + neovim + pinentry_mac ]; nixpkgs.config.allowUnfree = true;