From f4262783dfc081922d21a3f1ae7c1c4446cd0746 Mon Sep 17 00:00:00 2001 From: krizej <60076189+krizej@users.noreply.github.com> Date: Wed, 10 Jul 2024 23:00:01 +0200 Subject: [PATCH] thunar --- programs/default.nix | 17 +++++------------ programs/thunar.nix | 22 ++++++++++++++++++++++ 2 files changed, 27 insertions(+), 12 deletions(-) create mode 100644 programs/thunar.nix diff --git a/programs/default.nix b/programs/default.nix index 2060fb7..ed730ce 100644 --- a/programs/default.nix +++ b/programs/default.nix @@ -9,11 +9,11 @@ ./i3.nix ./ssh.nix ./vim.nix + ./thunar.nix ]; config = { programs = { - dconf.enable = true; steam.enable = true; }; @@ -37,15 +37,10 @@ eza.enable = true; yt-dlp.enable = true; }; + home-manager.users.krizej.home.packages = with pkgs; [ fortune - - xarchiver - gvfs yad - xfce.thunar - xfce.thunar-volman - xfce.thunar-archive-plugin pavucontrol pamixer @@ -57,21 +52,19 @@ ezquake vkquake ericw-tools-latest - embree # for ericw-tools - tbb # for ericw-tools trenchbroom r2modman godot_4 + wineWowPackages.stable + winetricks + libreoffice-qt gimp sqlitebrowser feh vlc - wineWowPackages.stable - winetricks - gdb ccls clang-tools diff --git a/programs/thunar.nix b/programs/thunar.nix new file mode 100644 index 0000000..85da0ba --- /dev/null +++ b/programs/thunar.nix @@ -0,0 +1,22 @@ +{ pkgs, ... }: +{ + programs = { + dconf.enable = true; + xfconf.enable = true; + thunar = { + enable = true; + plugins = with pkgs.xfce; [ + thunar-volman + thunar-archive-plugin + thunar-media-tags-plugin + ]; + }; + }; + services.gvfs.enable = true; + services.tumbler.enable = true; + home-manager.users.krizej.home.packages = with pkgs; [ + ffmpegthumbnailer + gsettings-desktop-schemas + xarchiver # not really thunar but can be here ig + ]; +}