Remove unused argument

This commit is contained in:
Andreas Zweili 2022-11-04 00:13:21 +01:00
parent 0f7b3b5165
commit 10a2ae108c
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ inputs, custom }: { ... }:
{ custom }: { ... }:
{
# Home Manager needs a bit of information about you and the
# paths it should manage.

View File

@ -1,7 +1,7 @@
{ custom, inputs }: { ... }:
{
imports = [
(import "${inputs.self}/home-manager/common" { inherit custom inputs; })
(import "${inputs.self}/home-manager/common" { inherit custom; })
"${inputs.self}/home-manager/software/fzf"
"${inputs.self}/home-manager/software/git"
"${inputs.self}/home-manager/software/vim"