Current state of main at 0240060 feat(hp-laptop): install TeleportFling from its flake. History intentionally collapsed to a single commit; this repo mirrors only the latest state.
21 lines
455 B
Nix
21 lines
455 B
Nix
{ pkgs, ... }:
|
|
|
|
# Shared GNOME extensions: AppIndicator, User Themes, Caffeine
|
|
{
|
|
dconf.settings = {
|
|
"org/gnome/shell" = {
|
|
enabled-extensions = [
|
|
"[email protected]"
|
|
"[email protected]"
|
|
"[email protected]"
|
|
];
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
gnomeExtensions.appindicator
|
|
gnomeExtensions.user-themes
|
|
gnomeExtensions.caffeine
|
|
];
|
|
}
|