17 lines
164 B
Nix
17 lines
164 B
Nix
|
|
{
|
|
inputs,
|
|
nixpkgs,
|
|
nixvim,
|
|
config,
|
|
self,
|
|
username,
|
|
host,
|
|
...
|
|
}: {
|
|
imports =
|
|
[( import ./bootloader.nix )]
|
|
++ [( import ./network.nix )];
|
|
}
|
|
|