dolphin basic

This commit is contained in:
2024-03-03 19:04:59 +01:00
parent fd31d1d355
commit 0ada1ba247
4 changed files with 16 additions and 11 deletions

View File

@@ -32,7 +32,6 @@
## Dolphin ## Dolphin
- Installieren
- COe Cloud einrichten - Nautilus => maby general Nautilus? - COe Cloud einrichten - Nautilus => maby general Nautilus?
## Obs ## Obs

View File

@@ -1,7 +1,7 @@
{ {
imports = [ imports = [
./alacritty ./alacritty
./dolphin ./thunar
./neovim ./neovim
./git.nix ./git.nix
./wallpaper.nix ./wallpaper.nix

View File

@@ -1,9 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs;
[
dolphin
];
}

View File

@@ -0,0 +1,15 @@
{ pkgs, ... }:
{
programs = {
thunar = {
enable = true;
plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
};
xfconf.enable = true;
};
services = {
gvfs.enable = true; # Mount, trash, ...
tumbler.enable = true; # Thumbnail support for images.
};
}