- Added Gstreamer packages for audio data - Replaced catppuccin wallpaper on lockscreen with one where the logo is higher - Replaced dolphin with nautilus file manager - Moved Gnome related configs to /gnome - Added Gnome appindicator and extension manager - Added loupe and gimp - Added mime types for image files
10 lines
188 B
Nix
10 lines
188 B
Nix
{ pkgs, ... }:
|
|
# TODO file-preview for videos, svgs and other types
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
nautilus
|
|
];
|
|
|
|
programs.nautilus-open-any-terminal.enable = true;
|
|
}
|