From 0f3a5ec38e83a649016e83d5409e3c6ffe2abc1f Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Wed, 29 May 2024 19:59:35 -0700 Subject: [PATCH] cleaning nil warnings --- home.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home.nix b/home.nix index 7797998..eda378a 100644 --- a/home.nix +++ b/home.nix @@ -1,4 +1,4 @@ -{ config, pkgs, inputs, ... }: +{ pkgs, inputs, ... }: { imports = [ @@ -23,7 +23,7 @@ # The home.packages option allows you to install Nix packages into your # environment. - home.packages = with pkgs; [ + home.packages = [ # # Adds the 'hello' command to your environment. It prints a friendly # # "Hello, world!" when run. # pkgs.hello