mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 12:47:00 +01:00
14 lines
258 B
Nix
14 lines
258 B
Nix
{ pkgs, ... }:
|
|
{
|
|
dconf = {
|
|
settings."org/gnome/shell" = {
|
|
enabled-extensions = with pkgs.gnomeExtensions; [
|
|
appindicator.extensionUuid
|
|
caffeine.extensionUuid
|
|
dash-to-dock.extensionUuid
|
|
wallpaper-slideshow.extensionUuid
|
|
];
|
|
};
|
|
};
|
|
}
|