This repository has been archived on 2025-10-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nixos-config/devices/thinkbook/default.nix

17 lines
300 B
Nix

{ customFunctions, ... }:
{
imports = customFunctions.scan {
path = ./.;
exclude = [ ./default.nix ];
};
device.laptop = {
enable = true;
battery.enable = true;
bluetooth.enable = true;
cpu.type = "intel";
sound.enable = true;
};
device.zram.enable = false;
}