15 lines
178 B
Nix
15 lines
178 B
Nix
# Module arguments which our system can use to refer to its own configuration
|
|
{ inputs, config, lib, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
../modules
|
|
];
|
|
|
|
options = {
|
|
};
|
|
|
|
config = {
|
|
|
|
};
|
|
}
|