40 lines
820 B
Nix
40 lines
820 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs; [
|
|
pcmanfm
|
|
file-roller
|
|
];
|
|
file = {
|
|
".config/pcmanfm/default/pcmanfm.conf".text = ''
|
|
[config]
|
|
bm_open_method=0
|
|
|
|
[volume]
|
|
mount_on_startup=0
|
|
mount_removable=1
|
|
autorun=0
|
|
|
|
[ui]
|
|
always_show_tabs=0
|
|
max_tab_chars=32
|
|
win_width=943
|
|
win_height=1039
|
|
splitter_pos=150
|
|
media_in_new_tab=0
|
|
desktop_folder_new_win=0
|
|
change_tab_on_drop=1
|
|
close_on_unmount=1
|
|
focus_previous=0
|
|
side_pane_mode=places
|
|
view_mode=icon
|
|
show_hidden=1
|
|
sort=name;ascending;
|
|
toolbar=newtab;navigation;home;
|
|
show_statusbar=1
|
|
pathbar_mode_buttons=0
|
|
'';
|
|
};
|
|
};
|
|
}
|