From 5104901343761bad8a1c1975b8165342a031e6c2 Mon Sep 17 00:00:00 2001 From: sefidel Date: Wed, 8 Mar 2023 17:46:14 +0900 Subject: feat(nixos/kompakt): add basic options --- nixos/kompakt/configuration.nix | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'nixos') diff --git a/nixos/kompakt/configuration.nix b/nixos/kompakt/configuration.nix index 0f303b9..554d830 100644 --- a/nixos/kompakt/configuration.nix +++ b/nixos/kompakt/configuration.nix @@ -19,7 +19,10 @@ # hardware.asahi.extractPeripheralFirmware = false; # Enable GPU acceleration - hardware.asahi.useExperimentalGPUDriver = true; + # TODO: Fix scaling issue + # hardware.asahi.useExperimentalGPUDriver = true; + # hardware.asahi.experimentalGPUInstallMode = "overlay"; + hardware.opengl.enable = true; boot.kernelParams = [ "console=tty1" @@ -35,6 +38,7 @@ ''; networking.wireless.iwd.enable = true; + hardware.bluetooth.enable = true; time.timeZone = "Asia/Seoul"; @@ -46,7 +50,15 @@ services.printing.enable = true; - sound.enable = true; + sound.enable = false; + + services.pipewire = { + enable = true; + + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + }; # Backlight control programs.light.enable = true; -- cgit 1.4.1