feat(nautilus): Use cosmic-files instead of nautilus
This commit is contained in:
parent
1fdfc2dfc5
commit
edad727d17
3 changed files with 30 additions and 9 deletions
|
|
@ -17,14 +17,23 @@ in
|
||||||
enable = true;
|
enable = true;
|
||||||
platformTheme = "qt5ct";
|
platformTheme = "qt5ct";
|
||||||
};
|
};
|
||||||
environment.systemPackages = with pkgs; [
|
# Enabled to support trash of nautilus
|
||||||
bluez
|
services.gvfs.enable = true;
|
||||||
cosmic-files
|
environment = {
|
||||||
kdePackages.qt6ct
|
pathsToLink = [ "share/thumbnailers" ];
|
||||||
libsForQt5.qt5ct
|
systemPackages = with pkgs; [
|
||||||
xwayland-satellite-unstable
|
nautilus
|
||||||
evince
|
nautilus-open-any-terminal
|
||||||
];
|
libheif
|
||||||
|
libheif.out
|
||||||
|
|
||||||
|
bluez
|
||||||
|
kdePackages.qt6ct
|
||||||
|
libsForQt5.qt5ct
|
||||||
|
xwayland-satellite-unstable
|
||||||
|
evince
|
||||||
|
];
|
||||||
|
};
|
||||||
xdg = {
|
xdg = {
|
||||||
terminal-exec = {
|
terminal-exec = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -39,7 +48,7 @@ in
|
||||||
"org.gnome.Evince.desktop"
|
"org.gnome.Evince.desktop"
|
||||||
];
|
];
|
||||||
"inode/directory" = [
|
"inode/directory" = [
|
||||||
"com.system76.CosmicFiles.desktop"
|
"org.gnome.Nautilus.desktop"
|
||||||
];
|
];
|
||||||
"x-scheme-handler/about" = [
|
"x-scheme-handler/about" = [
|
||||||
"firefox-beta.desktop"
|
"firefox-beta.desktop"
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@ in
|
||||||
./cliphist.nix
|
./cliphist.nix
|
||||||
./zulip.nix
|
./zulip.nix
|
||||||
./spotifyd.nix
|
./spotifyd.nix
|
||||||
|
./nautilus.nix
|
||||||
|
|
||||||
# Nur
|
# Nur
|
||||||
./nur.nix
|
./nur.nix
|
||||||
|
|
|
||||||
11
overlays/modifications/nautilus.nix
Normal file
11
overlays/modifications/nautilus.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }:
|
||||||
|
_final: prev: {
|
||||||
|
nautilus = prev.nautilus.overrideAttrs (nprev: {
|
||||||
|
buildInputs =
|
||||||
|
(nprev.buildInputs or [ ])
|
||||||
|
++ (with prev.gst_all_1; [
|
||||||
|
gst-plugins-good
|
||||||
|
gst-plugins-bad
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue