parent
4979208928
commit
e99c7e3904
1 changed files with 10 additions and 1 deletions
|
@ -1,12 +1,21 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
nautilus
|
||||
nautilus-python
|
||||
];
|
||||
|
||||
environment.sessionVariables.NAUTILUS_4_EXTENSION_DIR = "${pkgs.nautilus-python}/lib/nautilus/extensions-4";
|
||||
environment.pathsToLink = [ "/share/nautilus-python/extensions" ];
|
||||
programs.nautilus-open-any-terminal = {
|
||||
enable = true;
|
||||
terminal = "ghostty";
|
||||
};
|
||||
|
||||
# https://wiki.nixos.org/wiki/Nautilus#GVfs
|
||||
services.gvfs.enable = true;
|
||||
environment.sessionVariables.GIO_EXTRA_MODULES = [
|
||||
"${config.services.gvfs.package}/lib/gio/modules"
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue