17 lines
300 B
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;
|
|
}
|