22 lines
231 B
Nix
22 lines
231 B
Nix
{
|
|
inputs,
|
|
flake,
|
|
self,
|
|
}: {
|
|
lib,
|
|
pkgs,
|
|
modulesPath,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
self.nixosModules.hectic
|
|
];
|
|
|
|
hectic = {
|
|
archetype.base.enable = true;
|
|
hardware.lenovo-legion.enable = true;
|
|
};
|
|
}
|