move some extensions from shared module to user module

This commit is contained in:
Vinzenz Schroeter 2025-01-02 18:17:23 +01:00
parent 8b48c54f48
commit 161d78902e
4 changed files with 83 additions and 65 deletions

23
home/vinzenz/gnome.nix Normal file
View file

@ -0,0 +1,23 @@
inputs@{ pkgs, ... }:
{
config = {
home.packages = with pkgs.gnomeExtensions; [
gsconnect
# battery-health-charging
quick-settings-tweaker
solaar-extension
alphabetical-app-grid
];
dconf.settings = {
"org/gnome/shell" = {
enabled-extensions = [
"GPaste@gnome-shell-extensions.gnome.org"
"gsconnect@andyholmes.github.io"
"solaar-extension@sidevesh"
"AlphabeticalAppGrid@stuarthayhurst"
];
};
};
};
}