mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
25 lines
488 B
Nix
25 lines
488 B
Nix
![]() |
{ 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
|
||
|
;
|
||
|
};
|
||
|
}
|