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