2024-12-31 20:28:24 +01:00
|
|
|
{ pkgs, ... }:
|
2025-01-07 20:18:30 +01:00
|
|
|
let
|
|
|
|
common = import ../../common.nix;
|
|
|
|
in
|
2024-12-31 20:28:24 +01:00
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
nautilus
|
2025-01-07 20:18:30 +01:00
|
|
|
ffmpegthumbnailer # Thumbnails
|
2024-12-31 20:28:24 +01:00
|
|
|
];
|
|
|
|
|
2025-01-02 22:28:12 +01:00
|
|
|
programs.nautilus-open-any-terminal = {
|
|
|
|
enable = true;
|
2025-01-07 20:18:30 +01:00
|
|
|
terminal = common.terminal;
|
2025-01-02 22:28:12 +01:00
|
|
|
};
|
2024-12-31 20:28:24 +01:00
|
|
|
}
|