diff options
author | sinanmohd <sinan@firemail.cc> | 2023-08-08 07:45:37 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-08-10 05:36:17 +0530 |
commit | 0bed62a620eeb49ccbe03ac4acf6f437e53939ab (patch) | |
tree | 65874635a2848bb4a9f676fe296ee6e3a3d6b495 /features/development.nix | |
parent | 5a641e216e7799b024261cc2b77f272fe6473782 (diff) |
clean up: inconsistent list style
Diffstat (limited to 'features/development.nix')
-rw-r--r-- | features/development.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/features/development.nix b/features/development.nix index 9ca0446..aa26c9b 100644 --- a/features/development.nix +++ b/features/development.nix @@ -1,6 +1,9 @@ { config, pkgs, ... }: { - environment.systemPackages = [ pkgs.man-pages pkgs.man-pages-posix ]; + environment.systemPackages = with pkgs; [ + man-pages + man-pages-posix + ]; documentation.dev.enable = true; } |