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 + ]; +}