Files
util.nix/nixos/system/yukkop/yukkop.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;
};
}