mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 10:30:14 +01:00
move some extensions from shared module to user module
This commit is contained in:
parent
8b48c54f48
commit
161d78902e
|
@ -26,10 +26,6 @@
|
||||||
"appindicatorsupport@rgcjonas.gmail.com"
|
"appindicatorsupport@rgcjonas.gmail.com"
|
||||||
"workspace-indicator@gnome-shell-extensions.gcampax.github.com"
|
"workspace-indicator@gnome-shell-extensions.gcampax.github.com"
|
||||||
"caffeine@patapon.info"
|
"caffeine@patapon.info"
|
||||||
"GPaste@gnome-shell-extensions.gnome.org"
|
|
||||||
"gsconnect@andyholmes.github.io"
|
|
||||||
"solaar-extension@sidevesh"
|
|
||||||
"AlphabeticalAppGrid@stuarthayhurst"
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"ca/desrt/dconf-editor" = {
|
"ca/desrt/dconf-editor" = {
|
||||||
|
|
|
@ -20,11 +20,6 @@
|
||||||
++ (with gnomeExtensions; [
|
++ (with gnomeExtensions; [
|
||||||
caffeine
|
caffeine
|
||||||
appindicator
|
appindicator
|
||||||
gsconnect
|
|
||||||
# battery-health-charging
|
|
||||||
quick-settings-tweaker
|
|
||||||
solaar-extension
|
|
||||||
alphabetical-app-grid
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
dconf.settings = import ./gnome-shared-dconf.nix;
|
dconf.settings = import ./gnome-shared-dconf.nix;
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
inputs@{ pkgs, ... }:
|
inputs@{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
imports = [ ./gnome.nix ];
|
||||||
|
|
||||||
|
config = {
|
||||||
programs = {
|
programs = {
|
||||||
home-manager.enable = true;
|
home-manager.enable = true;
|
||||||
fzf.enable = true;
|
fzf.enable = true;
|
||||||
|
@ -61,4 +64,5 @@ inputs@{ pkgs, ... }:
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
23
home/vinzenz/gnome.nix
Normal file
23
home/vinzenz/gnome.nix
Normal 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"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue