Sway : Enable Gnome apps.

This commit is contained in:
Dmitry Voronin 2024-04-16 23:39:32 +03:00
parent c1d02624cb
commit 48b3e8ec43
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k
3 changed files with 20 additions and 3 deletions

View file

@ -7,6 +7,8 @@ in {
./desktop/Bluetooth.nix
./desktop/Brightness.nix
./desktop/Dconf.nix
./desktop/GnomeApps.nix
./desktop/Polkit.nix
./desktop/Portal.nix
./desktop/Realtime.nix
./desktop/Sound.nix

View file

@ -24,15 +24,12 @@
environment = {
systemPackages = with pkgs; [
adwsteamgtk gradience
android-studio jetbrains.idea-community
appimage-run
blender-hip
bottles dxvk gamescope mangohud vkd3d wine64
calibre
evince loupe gnome.nautilus gnome.gnome-calculator
gimp
gnome.adwaita-icon-theme
jellyfin-media-player
mpv
obs-studio

View file

@ -0,0 +1,18 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
adwsteamgtk
evince
gnome.adwaita-icon-theme
gnome.gnome-calculator
gnome.nautilus
loupe
gnome.gnome-font-viewer
# gnome.gnome-keyring
];
# Nautilus previews.
services.gnome.sushi.enable = true;
# Nautilus network.
services.gnome3.gvfs.enable = true;
}