mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
14 lines
279 B
Nix
14 lines
279 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
# Install Nautilus file manager
|
|
config = lib.mkIf config.gui.enable {
|
|
home-manager.users.${config.user} = {
|
|
home.packages = with pkgs; [
|
|
gnome.nautilus
|
|
gnome.sushi # Quick preview with spacebar
|
|
];
|
|
};
|
|
};
|
|
|
|
}
|