Update common.nix

This commit is contained in:
ediblerope 2025-12-03 12:45:29 +00:00 committed by GitHub
parent a131d8cfd8
commit 7c360e2f46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -80,12 +80,15 @@ users.users.fred = {
fastfetch fastfetch
vesktop 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 # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;