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;
|
||||
platformTheme = "qt5ct";
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Enabled to support trash of nautilus
|
||||
services.gvfs.enable = true;
|
||||
environment = {
|
||||
pathsToLink = [ "share/thumbnailers" ];
|
||||
systemPackages = with pkgs; [
|
||||
nautilus
|
||||
nautilus-open-any-terminal
|
||||
libheif
|
||||
libheif.out
|
||||
|
||||
bluez
|
||||
cosmic-files
|
||||
kdePackages.qt6ct
|
||||
libsForQt5.qt5ct
|
||||
xwayland-satellite-unstable
|
||||
evince
|
||||
];
|
||||
};
|
||||
xdg = {
|
||||
terminal-exec = {
|
||||
enable = true;
|
||||
|
|
@ -39,7 +48,7 @@ in
|
|||
"org.gnome.Evince.desktop"
|
||||
];
|
||||
"inode/directory" = [
|
||||
"com.system76.CosmicFiles.desktop"
|
||||
"org.gnome.Nautilus.desktop"
|
||||
];
|
||||
"x-scheme-handler/about" = [
|
||||
"firefox-beta.desktop"
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ in
|
|||
./cliphist.nix
|
||||
./zulip.nix
|
||||
./spotifyd.nix
|
||||
./nautilus.nix
|
||||
|
||||
# Nur
|
||||
./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