enable qualcom quirks
This commit is contained in:
parent
eb10c1c3af
commit
26550b781c
1 changed files with 10 additions and 2 deletions
|
@ -1,9 +1,13 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, inputs, lib, pkgs, ... }:
|
||||||
let
|
let
|
||||||
|
|
||||||
in
|
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";
|
stitchyconf.form = "handheld";
|
||||||
|
|
||||||
|
@ -16,6 +20,10 @@ in
|
||||||
kernel.useStrictKernelConfig = true;
|
kernel.useStrictKernelConfig = true;
|
||||||
networking.enable = true;
|
networking.enable = true;
|
||||||
};
|
};
|
||||||
|
quirks = {
|
||||||
|
audio.alsa-ucm-meld = true;
|
||||||
|
qualcomm.sdm845-modem.enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
|
|
Loading…
Reference in a new issue