Merge pull request #58 from cjlarose/fix-missing-semicolon

Fix syxtax error in Modularize the Configuration
This commit is contained in:
Ryan Yin 2023-11-30 08:16:06 +08:00 committed by GitHub
commit e94bb6c9b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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