From 6c157f54112406db957dec8d897f135b73695828 Mon Sep 17 00:00:00 2001 From: Jimbo Date: Wed, 16 Oct 2024 00:44:23 -0400 Subject: [PATCH] Add back alsa-utils and scale to the PineBook --- hosts/shuttleworth/home/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hosts/shuttleworth/home/default.nix b/hosts/shuttleworth/home/default.nix index ff54bf3..4f76f6f 100644 --- a/hosts/shuttleworth/home/default.nix +++ b/hosts/shuttleworth/home/default.nix @@ -1,4 +1,4 @@ -{ nur, ... }: +{ config, nur, ... }: { imports = [ # Apps and programs @@ -19,4 +19,10 @@ # Imports nur.nixosModules.nur ]; + + home.packages = with pkgs; [ + alsa-utils + ]; + + wayland.windowManager.sway.config.output.${config.displays.dI}.scale = "1.3"; }