A complete reformatting to match nixpkgs-fmt

This commit is contained in:
Greg Hellings
2024-10-03 11:26:39 -05:00
parent e2f0856102
commit 78c802d32c
114 changed files with 5246 additions and 5089 deletions
+21 -20
View File
@@ -1,24 +1,25 @@
{ config, pkgs, lib, ... }:
let
packages = with pkgs; [
bruno # but let's not talk about it
cargo
gh-copilot
mariadb
nix-eval-jobs
nix-fast-build
nix-output-monitor
nix-update
nixfmt-rfc-style
nixpkgs-review
nodejs
process-compose
zed-editor
];
in with lib; {
options.greg.development = mkEnableOption "Setup necessary development packages";
packages = with pkgs; [
bruno # but let's not talk about it
cargo
gh-copilot
mariadb
nix-eval-jobs
nix-fast-build
nix-output-monitor
nix-update
nixfmt-rfc-style
nixpkgs-review
nodejs
process-compose
zed-editor
];
in
with lib; {
options.greg.development = mkEnableOption "Setup necessary development packages";
config = mkIf config.greg.development {
home.packages = packages;
};
config = mkIf config.greg.development {
home.packages = packages;
};
}