refactor(nix): remove redundant parens
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled

This commit is contained in:
Price Hiller 2024-10-09 11:03:51 -05:00
parent 5f0cb9fb3e
commit 6eae09a5b8
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -88,7 +88,7 @@
inherit inputs;
};
modules = [
({
{
imports = [ inputs.agenix.homeManagerModules.default ];
nixpkgs.overlays = [
inputs.emacs-overlay.overlays.default
@ -100,7 +100,7 @@
username = "${username}";
homeDirectory = "/home/${username}";
};
})
}
home-config
];
};
@ -108,7 +108,7 @@
{
formatter = forAllSystems (pkgs: pkgs.nixfmt-rfc-style);
packages = forAllSystems (pkgs: import ./pkgs pkgs);
homeConfigurations = builtins.mapAttrs (mkHomeCfg) { "price" = ./users/price/home.nix; };
homeConfigurations = builtins.mapAttrs mkHomeCfg { "price" = ./users/price/home.nix; };
overlays = import ./overlays { inherit inputs; };
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell {