Fix syxtax error in Modularize the Configuration

This commit is contained in:
Chris LaRose 2023-11-28 21:09:03 -08:00
parent 26b7bb466d
commit 9f3c967120

View file

@ -35,7 +35,7 @@ With the help of `imports`, we can split `home.nix` and `configuration.nix` into
... ...
}: { }: {
imports = [ imports = [
(import ./special-fonts-1.nix {inherit config pkgs}) # (1) (import ./special-fonts-1.nix {inherit config pkgs;}) # (1)
./special-fonts-2.nix # (2) ./special-fonts-2.nix # (2)
]; ];