Compare commits
2 commits
0bb3e8880d
...
ad40e72fbd
Author | SHA1 | Date | |
---|---|---|---|
ad40e72fbd | |||
e9e6d9e793 |
2 changed files with 15 additions and 8 deletions
|
@ -10,16 +10,21 @@ in {
|
||||||
options.custom.programs.nautilus.enable = mkOption {default = false;};
|
options.custom.programs.nautilus.enable = mkOption {default = false;};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
services.gvfs.enable = true; # Trash dependency
|
services = {
|
||||||
|
gnome.sushi.enable = true; # Quick preview with spacebar
|
||||||
# Fix nautilus extension environment
|
gvfs.enable = true; # Trash dependency
|
||||||
# https://github.com/NixOS/nixpkgs/pull/240780
|
|
||||||
#?? echo $NAUTILUS_4_EXTENSION_DIR
|
|
||||||
services.gnome = {
|
|
||||||
core-utilities.enable = true; # Required to set environment variables
|
|
||||||
sushi.enable = true; # Quick preview with spacebar
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Alternative fix to services.gnome.core-utilities.enable
|
||||||
|
# https://github.com/NixOS/nixpkgs/pull/240780
|
||||||
|
#?? echo $NAUTILUS_4_EXTENSION_DIR
|
||||||
|
programs.nautilus-open-any-terminal = {
|
||||||
|
enable = true;
|
||||||
|
terminal = "kitty";
|
||||||
|
};
|
||||||
|
|
||||||
|
# TODO: Use module when completed
|
||||||
|
# https://github.com/NixOS/nixpkgs/pull/319535
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
nautilus
|
nautilus
|
||||||
nautilus-open-in-blackbox
|
nautilus-open-in-blackbox
|
||||||
|
|
|
@ -81,6 +81,7 @@ in {
|
||||||
gnome-calendar
|
gnome-calendar
|
||||||
gnome-connections
|
gnome-connections
|
||||||
gnome-disk-utility
|
gnome-disk-utility
|
||||||
|
gnome-font-viewer
|
||||||
gnome-resources
|
gnome-resources
|
||||||
gnome-software
|
gnome-software
|
||||||
gnome-system-monitor
|
gnome-system-monitor
|
||||||
|
@ -107,6 +108,7 @@ in {
|
||||||
pwvucontrol
|
pwvucontrol
|
||||||
remmina
|
remmina
|
||||||
signal-desktop
|
signal-desktop
|
||||||
|
smile
|
||||||
snapshot
|
snapshot
|
||||||
spotify
|
spotify
|
||||||
syncthingtray
|
syncthingtray
|
||||||
|
|
Loading…
Add table
Reference in a new issue