From faed026258ca6301e66526dcf635f57791540cd3 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Thu, 4 Sep 2025 14:05:36 -0400 Subject: [PATCH] some formatting modifications --- modules/common/environment.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/common/environment.nix b/modules/common/environment.nix index 826ad32..2c7c8b9 100644 --- a/modules/common/environment.nix +++ b/modules/common/environment.nix @@ -1,5 +1,4 @@ { lib, pkgs, ... }: { - # Common packages that every system will use environment.systemPackages = with pkgs; [ git vim @@ -17,9 +16,8 @@ nix-ld ]) ++ lib.optionals pkgs.stdenv.isDarwin (with pkgs; [ - # nothing here, yet + # nothing here, yet ;) ]); - # Common environment variables that every system will use environment.variables.EDITOR = "nvim"; }