From 684403024b27011588f123ecff933570e6bcb3a9 Mon Sep 17 00:00:00 2001 From: Tootbrute Date: Thu, 5 Jun 2025 13:26:13 +0800 Subject: [PATCH] add info about mic --- README.md | 31 ++++++++++++++++--------------- hardware-configuration.nix | 4 ++++ 2 files changed, 20 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index cc22f7f..309634d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Home Laptop System +# Main Laptop System - No flakes - Stripped down GNOME - Added fonts @@ -7,28 +7,27 @@ ``` ▗▄▄▄ ▗▄▄▄▄ ▄▄▄▖ tootbrute@greynix ▜███▙ ▜███▙ ▟███▛ ------------- - ▜███▙ ▜███▙▟███▛ OS: NixOS 24.11 (Vicuna) x86_64 + ▜███▙ ▜███▙▟███▛ OS: NixOS 25.05 (Warbler) x86_64 ▜███▙ ▜██████▛ Host: VivoBook_ASUSLaptop X415EA_X415EA (1.0) - ▟█████████████████▙ ▜████▛ ▟▙ Kernel: Linux 6.6.90 - ▟███████████████████▙ ▜███▙ ▟██▙ Uptime: 4 hours, 41 mins - ▄▄▄▄▖ ▜███▙ ▟███▛ Packages: 1590 (nix-system), 31 (flatpak) + ▟█████████████████▙ ▜████▛ ▟▙ Kernel: Linux 6.14.8 + ▟███████████████████▙ ▜███▙ ▟██▙ Uptime: 12 days, 2 hours, 38 mins + ▄▄▄▄▖ ▜███▙ ▟███▛ Packages: 1576 (nix-system), 30 (flatpak) ▟███▛ ▜██▛ ▟███▛ Shell: bash 5.2.37 ▟███▛ ▜▛ ▟███▛ Display (CMN14D4): 1920x1080 @ 60 Hz in 14" [Built-in] -▟███████████▛ ▟██████████▙ DE: GNOME 47.2 +▟███████████▛ ▟██████████▙ DE: GNOME 48.1 ▜██████████▛ ▟███████████▛ WM: Mutter (Wayland) ▟███▛ ▟▙ ▟███▛ WM Theme: Adwaita ▟███▛ ▟██▙ ▟███▛ Theme: Adwaita [GTK2/3/4] ▟███▛ ▜███▙ ▝▀▀▀▀ Icons: Adwaita [GTK2/3/4] - ▜██▛ ▜███▙ ▜██████████████████▛ Font: Cantarell (11pt) [GTK2/3/4] + ▜██▛ ▜███▙ ▜██████████████████▛ Font: Adwaita Sans (11pt) [GTK2/3/4] ▜▛ ▟████▙ ▜████████████████▛ Cursor: Adwaita (24px) - ▟██████▙ ▜███▙ Terminal: GNOME Console 47.1 - ▟███▛▜███▙ ▜███▙ Terminal Font: Source Code Pro (10pt) - ▟███▛ ▜███▙ ▜███▙ CPU: 11th Gen Intel(R) Core(TM) i5-1135G7 (8) @ 4.20 GHz - ▝▀▀▀ ▀▀▀▀▘ ▀▀▀▘ GPU: Intel Iris Xe Graphics @ 1.30 GHz [Integrated] - Memory: 3.65 GiB / 23.18 GiB (16%) - Swap: 1.50 MiB / 8.78 GiB (0%) - Disk (/): 57.76 GiB / 459.21 GiB (13%) - ext4 - Local IP (wlo1): 192.168.200.198/24 + ▟██████▙ ▜███▙ Terminal: .ptyxis-agent-w + ▟███▛▜███▙ ▜███▙ CPU: 11th Gen Intel(R) Core(TM) i5-1135G7 (8) @ 4.20 GHz + ▟███▛ ▜███▙ ▜███▙ GPU: Intel Iris Xe Graphics @ 1.30 GHz [Integrated] + ▝▀▀▀ ▀▀▀▀▘ ▀▀▀▘ Memory: 3.64 GiB / 23.17 GiB (16%) + Swap: 0 B / 8.78 GiB (0%) + Disk (/): 50.43 GiB / 459.21 GiB (11%) - ext4 + Local IP (wlo1): 192.168.107.66/24 Battery (ASUS Battery): 100% [AC Connected] Locale: en_US.UTF-8 @@ -36,6 +35,8 @@ ## To Fix - Internal Microphone not working +-- Microphone works in Fedora live USB and other distros + ``` lspci -v diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 93c382a..31cac95 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -16,6 +16,10 @@ boot.kernelPackages = pkgs.linuxPackages_latest; #boot.kernelPackages = pkgs.linuxPackages_6_14; +boot.extraModprobeConfig = '' + options snd slots=snd-hda-intel +''; + fileSystems."/" = { device = "/dev/disk/by-uuid/27986c46-1dd1-4444-b732-7e7c36f2ed29"; fsType = "ext4";