enable qualcom quirks
This commit is contained in:
parent
eb10c1c3af
commit
d5714a3e84
1 changed files with 10 additions and 2 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue