14 lines
279 B
Nix
Raw Normal View History

2022-05-30 13:18:18 -04:00
{ config, pkgs, lib, ... }: {
# Install Nautilus file manager
config = lib.mkIf config.gui.enable {
home-manager.users.${config.user} = {
home.packages = with pkgs; [
gnome.nautilus
2022-05-30 16:07:43 -04:00
gnome.sushi # Quick preview with spacebar
2022-05-30 13:18:18 -04:00
];
};
};
}