22 lines
304 B
Nix
Executable File
22 lines
304 B
Nix
Executable File
{
|
|
inputs,
|
|
nixpkgs,
|
|
nixvim,
|
|
config,
|
|
self,
|
|
username,
|
|
host,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
(import ./bootloader.nix)
|
|
]
|
|
++ [ (import ./network.nix) ]
|
|
++ [ (import ./powerprofiles.nix) ]
|
|
++ [ (import ./kernel.nix) ]
|
|
++ [ (import ./input.nix) ];
|
|
|
|
hardware.keyboard.uhk.enable = true;
|
|
}
|