From 548c5a989d283ed9a27bbb43d71e1d6292982d0c Mon Sep 17 00:00:00 2001 From: rocketcamel Date: Wed, 15 Oct 2025 10:07:55 -0700 Subject: [PATCH] feat: add needed libs --- nix/hosts/tux/configuration.nix | 5 ++++- nix/modules/commonPackages.nix | 5 +++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/nix/hosts/tux/configuration.nix b/nix/hosts/tux/configuration.nix index fc09da2..bce7148 100644 --- a/nix/hosts/tux/configuration.nix +++ b/nix/hosts/tux/configuration.nix @@ -84,7 +84,10 @@ users.users.luca = { isNormalUser = true; - extraGroups = [ "wheel" ]; + extraGroups = [ + "wheel" + "docker" + ]; shell = pkgs.zsh; hashedPassword = config.hashedPassword; openssh.authorizedKeys.keys = config.authorized_ssh; diff --git a/nix/modules/commonPackages.nix b/nix/modules/commonPackages.nix index f2da9bc..daf4222 100644 --- a/nix/modules/commonPackages.nix +++ b/nix/modules/commonPackages.nix @@ -66,6 +66,11 @@ gradle cmake doppler + wayland + wayland-protocols + libxkbcommon + udev + alsa-lib ]; programs.nix-ld.enable = lib.mkDefault true; programs.zsh.enable = lib.mkDefault true;