mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
24 lines
488 B
Nix
Executable file
24 lines
488 B
Nix
Executable file
{ pkgs, ... }:
|
|
{
|
|
home.packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
gnome-connections
|
|
gnome-tweaks
|
|
gnome-shell-extensions
|
|
gnome-remote-desktop
|
|
ulauncher
|
|
;
|
|
inherit (pkgs.gnomeExtensions)
|
|
tiling-shell
|
|
keep-awake
|
|
notification-banner-reloaded
|
|
no-overview
|
|
wallpaper-slideshow
|
|
dash-to-panel
|
|
just-perfection
|
|
appindicator
|
|
tiling-assistant
|
|
start-overlay-in-application-view
|
|
;
|
|
};
|
|
}
|