11 lines
183 B
Nix
11 lines
183 B
Nix
# Thunar is a file explorer
|
|
{ pkgs, ... }: {
|
|
# ctrl + m to toggle the menubar
|
|
home.packages = with pkgs; [
|
|
xfce.thunar
|
|
xfce.xfconf
|
|
xfce.tumbler
|
|
file-roller
|
|
];
|
|
}
|