2023-06-11 15:53:13 +00:00
|
|
|
# Module arguments which our system can use to refer to its own configuration
|
2023-06-18 15:03:56 +00:00
|
|
|
{ inputs, config, lib, pkgs, ... }:
|
2023-06-11 15:53:13 +00:00
|
|
|
{
|
2023-06-18 15:03:56 +00:00
|
|
|
imports = [
|
|
|
|
../modules
|
|
|
|
];
|
2023-06-11 15:53:13 +00:00
|
|
|
|
2023-06-18 15:03:56 +00:00
|
|
|
options = {
|
|
|
|
};
|
2023-06-11 15:53:13 +00:00
|
|
|
|
2023-06-18 15:03:56 +00:00
|
|
|
config = {
|
|
|
|
|
|
|
|
};
|
2023-06-11 15:53:13 +00:00
|
|
|
}
|