mirror of
https://github.com/librephoenix/nixos-config
synced 2025-10-19 01:54:02 +05:30
12 lines
288 B
Org Mode
12 lines
288 B
Org Mode
#+title: User-level Nix Modules
|
|
#+author: Emmet
|
|
|
|
Separate Nix files can be imported as modules using an import block:
|
|
#+BEGIN_SRC nix
|
|
imports = [ import1.nix
|
|
import2.nix
|
|
...
|
|
];
|
|
#+END_SRC
|
|
|
|
Modules in this directory are used are user-level configurations.
|