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

View file

@ -26,10 +26,6 @@
"appindicatorsupport@rgcjonas.gmail.com"
"workspace-indicator@gnome-shell-extensions.gcampax.github.com"
"caffeine@patapon.info"
"GPaste@gnome-shell-extensions.gnome.org"
"gsconnect@andyholmes.github.io"
"solaar-extension@sidevesh"
"AlphabeticalAppGrid@stuarthayhurst"
];
};
"ca/desrt/dconf-editor" = {

View file

@ -20,11 +20,6 @@
++ (with gnomeExtensions; [
caffeine
appindicator
gsconnect
# battery-health-charging
quick-settings-tweaker
solaar-extension
alphabetical-app-grid
]);
dconf.settings = import ./gnome-shared-dconf.nix;

View file

@ -1,5 +1,8 @@
inputs@{ pkgs, ... }:
{
imports = [ ./gnome.nix ];
config = {
programs = {
home-manager.enable = true;
fzf.enable = true;
@ -61,4 +64,5 @@ inputs@{ pkgs, ... }:
}
'';
};
};
}

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"
];
};
};
};
}