enable qualcom quirks

This commit is contained in:
stitchy 2024-04-10 05:49:56 +00:00
parent eb10c1c3af
commit d5714a3e84
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8

View file

@ -1,9 +1,13 @@
{ config, lib, pkgs, ... }:
{ config, inputs, lib, pkgs, ... }:
let
in
{
imports = [ ../default.nix ];
imports = [
"../default.nix"
"${inputs.mobile-nixos}/modules/quirks/qualcomm/sdm845-modem.nix"
"${inputs.mobile-nixos}/modules/quirks/audio.nix"
];
stitchyconf.form = "handheld";
@ -16,6 +20,10 @@ in
kernel.useStrictKernelConfig = true;
networking.enable = true;
};
quirks = {
audio.alsa-ucm-meld = true;
qualcomm.sdm845-modem.enable = true;
};
};
boot.loader = {