Anthony Rodriguez
fcd88bfa8e
Implement ags, a wayland bar / GTK shell. Also added a few dependencies required for it to work properly.
13 lines
237 B
Nix
13 lines
237 B
Nix
{pkgs, ...}: {
|
|
services = {
|
|
# needed for GNOME services outside of GNOME Desktop
|
|
dbus.packages = with pkgs; [
|
|
gcr
|
|
gnome-settings-daemon
|
|
];
|
|
|
|
gnome.gnome-keyring.enable = true;
|
|
|
|
gvfs.enable = true;
|
|
};
|
|
}
|