From 7c360e2f460c07a7e385c116456be8caa4379ada Mon Sep 17 00:00:00 2001 From: ediblerope Date: Wed, 3 Dec 2025 12:45:29 +0000 Subject: [PATCH] Update common.nix --- common.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/common.nix b/common.nix index b069411..9e8f78e 100644 --- a/common.nix +++ b/common.nix @@ -80,11 +80,14 @@ users.users.fred = { fastfetch vesktop ]; - shellInit = '' - # Force GTK dark theme for Electron apps like vesktop - export GTK_THEME=Adwaita:dark - ''; }; + +# User-specific environment variables +users.mutableUsers = true; # usually true +environment.variables = { + GTK_THEME = "Adwaita:dark"; +}; + # Allow unfree packages nixpkgs.config.allowUnfree = true;