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