mirror of
https://github.com/ryan4yin/nixos-and-flakes-book
synced 2024-11-23 04:33:08 +00:00
Fix syxtax error in Modularize the Configuration
This commit is contained in:
parent
26b7bb466d
commit
9f3c967120
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue