mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-25 02:14:41 +02:00
restructure folder organisation
This commit is contained in:
parent
599d55fa6a
commit
9cf7be677d
72 changed files with 95 additions and 98 deletions
26
legacy/modules/nautilus.nix
Normal file
26
legacy/modules/nautilus.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
# enable trash & network-mount
|
||||
services.gvfs.enable = true;
|
||||
|
||||
environment.sessionVariables.NAUTILUS_EXTENSION_DIR = "${config.system.path}/lib/nautilus/extensions-3.0";
|
||||
environment.pathsToLink = [
|
||||
"/share/nautilus-python/extensions"
|
||||
];
|
||||
|
||||
services.gnome.glib-networking.enable = true; # network-mount
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
# thumbnails
|
||||
ffmpegthumbnailer
|
||||
gnome.nautilus
|
||||
# enable plugins
|
||||
gnome.nautilus-python
|
||||
# thumbnails
|
||||
gst_all_1.gst-libav
|
||||
# default-programms
|
||||
shared-mime-info
|
||||
# terminal-context-entry
|
||||
nautilus-open-any-terminal
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue