flocon/system/services/gnome.nix

16 lines
319 B
Nix
Raw Normal View History

repo: add ags, a gtk shell commit 75cf6a4d67149ebf8952333f95bc58990b8ddb41 Author: Anthony Rodriguez <anthony@nezia.dev> Date: Fri Oct 11 15:34:14 2024 +0200 home/programs/niri: use gtk portals for most things, and gnome for screencast commit 5ccb424079facbfc2538b5ec51a5a9c2f4f29a45 Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 21:19:33 2024 +0200 home/programs/niri: add play/pause, add settings button on fn key f12 commit 8b7164739d8bd9f7bce19404a842446c77e4136f Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 00:32:40 2024 +0200 home/programs/niri: replace desktop-portal-gtk with gnome commit fe40c6c72cc9d4ee09742017e8691de697f24b92 Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 00:21:31 2024 +0200 home/programs/niri: add xdg-desktop-portal-gtk commit 74b7df12459ae259d646603c1212191b5b618bee Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 00:21:14 2024 +0200 home/programs: add fractal commit 3773095069a7170e14c339825565f2a70b0009b2 Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 00:21:05 2024 +0200 home/programs/gtk: use color-scheme for gtk4.0 commit 8fef768f4f830c04b1af088b1c2753d083ece2db Author: Anthony Rodriguez <anthony@nezia.dev> Date: Wed Oct 9 19:22:43 2024 +0200 system/services/regreet: ensure that regreet starts dbus session commit fcd88bfa8ed5053ef7464c79d121b3b1d0d78ffc Author: Anthony Rodriguez <anthony@nezia.dev> Date: Wed Oct 9 19:22:20 2024 +0200 repo: implement ags Implement ags, a wayland bar / GTK shell. Also added a few dependencies required for it to work properly.
2024-10-11 15:57:55 +00:00
{pkgs, ...}: {
services = {
# needed for GNOME services outside of GNOME Desktop
dbus.packages = with pkgs; [
gcr
gnome-settings-daemon
];
gnome.gnome-keyring.enable = true;
2024-10-20 17:10:42 +00:00
gnome.gnome-online-accounts.enable = true;
accounts-daemon.enable = true;
repo: add ags, a gtk shell commit 75cf6a4d67149ebf8952333f95bc58990b8ddb41 Author: Anthony Rodriguez <anthony@nezia.dev> Date: Fri Oct 11 15:34:14 2024 +0200 home/programs/niri: use gtk portals for most things, and gnome for screencast commit 5ccb424079facbfc2538b5ec51a5a9c2f4f29a45 Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 21:19:33 2024 +0200 home/programs/niri: add play/pause, add settings button on fn key f12 commit 8b7164739d8bd9f7bce19404a842446c77e4136f Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 00:32:40 2024 +0200 home/programs/niri: replace desktop-portal-gtk with gnome commit fe40c6c72cc9d4ee09742017e8691de697f24b92 Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 00:21:31 2024 +0200 home/programs/niri: add xdg-desktop-portal-gtk commit 74b7df12459ae259d646603c1212191b5b618bee Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 00:21:14 2024 +0200 home/programs: add fractal commit 3773095069a7170e14c339825565f2a70b0009b2 Author: Anthony Rodriguez <anthony@nezia.dev> Date: Thu Oct 10 00:21:05 2024 +0200 home/programs/gtk: use color-scheme for gtk4.0 commit 8fef768f4f830c04b1af088b1c2753d083ece2db Author: Anthony Rodriguez <anthony@nezia.dev> Date: Wed Oct 9 19:22:43 2024 +0200 system/services/regreet: ensure that regreet starts dbus session commit fcd88bfa8ed5053ef7464c79d121b3b1d0d78ffc Author: Anthony Rodriguez <anthony@nezia.dev> Date: Wed Oct 9 19:22:20 2024 +0200 repo: implement ags Implement ags, a wayland bar / GTK shell. Also added a few dependencies required for it to work properly.
2024-10-11 15:57:55 +00:00
gvfs.enable = true;
};
}