some formatting modifications

This commit is contained in:
2025-09-04 14:05:36 -04:00
parent 3af5061a79
commit faed026258

View File

@@ -1,5 +1,4 @@
{ lib, pkgs, ... }: { { lib, pkgs, ... }: {
# Common packages that every system will use
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
git git
vim vim
@@ -17,9 +16,8 @@
nix-ld nix-ld
]) ++ ]) ++
lib.optionals pkgs.stdenv.isDarwin (with pkgs; [ 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"; environment.variables.EDITOR = "nvim";
} }