mirror of
https://github.com/ryan4yin/nixos-and-flakes-book
synced 2024-11-23 12:43:08 +00:00
Merge pull request #58 from cjlarose/fix-missing-semicolon
Fix syxtax error in Modularize the Configuration
This commit is contained in:
commit
e94bb6c9b1
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