Remove unused module args

main
Bo Jeanes 2024-07-17 14:17:29 +10:00
parent 49aedc87ed
commit b6a6a1aabe
1 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@
# All nixos/nix-darwin configurations are kept here.
nixosModules = {
# Common nixos/nix-darwin configuration shared between Linux and macOS.
common = { pkgs, system, ... }:
common = { pkgs, ... }:
{
home-manager.backupFileExtension = "bak-hm";
home-manager.useUserPackages = true;
@ -154,7 +154,7 @@
# i.e. `foo = true` is equivalent to `home-manager.users.bjeanes.foo = true`.
homeModules = {
# Common home-manager configuration shared between Linux and macOS.
common = { pkgs, system, ... }:
common = { pkgs, ... }:
{
imports = [
inputs.nixvim.homeManagerModules.nixvim