feat: replace thunar with nautilus

This commit is contained in:
Youwen Wu 2025-06-01 22:07:00 -07:00
parent df7f6671f1
commit 63d4a1b452
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
3 changed files with 20 additions and 3 deletions

View file

@ -37,6 +37,23 @@ in
programs.vesktop.enable = lib.mkIf cfg.instantMessaging.enable true;
nixpkgs.overlays = [
(self: super: {
gnome = super.gnome.overrideScope' (
gself: gsuper: {
nautilus = gsuper.nautilus.overrideAttrs (nsuper: {
buildInputs =
nsuper.buildInputs
++ (with super.gst_all_1; [
gst-plugins-good
gst-plugins-bad
]);
});
}
);
})
];
home.packages =
lib.optionals cfg.archiveTools.enable (
with pkgs;
@ -78,7 +95,7 @@ in
with pkgs;
[
thunderbird
xfce.thunar
nautilus
nicotine-plus # soulseek client
gapless # music player
]