Remove unused module args

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