Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
arunoruto committed Oct 27, 2024
1 parent 8856e1c commit 6044012
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions modules/home-manager/server/nix-utils.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,19 @@
pkgs,
user,
...
}: let
}:
let
default = {
nixpkgs.expr = "import <nixpkgs> { }";
formatting.command = ["nixfmt"];
formatting.command = [ "nixfmt" ];
options = {
nixos.expr = "";
home-manager.expr = "";
};
diagnostics.supress = [];
diagnostics.supress = [ ];
};
in {
in
{
options = {
nix-utils.enable = lib.mkEnableOption "Helpful nix utils";
nixd-config = lib.mkOption {
Expand All @@ -33,6 +35,15 @@ in {
home.packages = with pkgs; [
alejandra
nixd
# nixfmt
unstable.nixfmt-rfc-style

unstable.nh
nix-du
nix-tree
nix-output-monitor
nvd
unstable.nixpkgs-review
];
};
}

0 comments on commit 6044012

Please sign in to comment.