This commit is contained in:
krizej 2024-07-10 23:00:01 +02:00
parent abbea019f7
commit f4262783df
2 changed files with 27 additions and 12 deletions

View file

@ -9,11 +9,11 @@
./i3.nix ./i3.nix
./ssh.nix ./ssh.nix
./vim.nix ./vim.nix
./thunar.nix
]; ];
config = { config = {
programs = { programs = {
dconf.enable = true;
steam.enable = true; steam.enable = true;
}; };
@ -37,15 +37,10 @@
eza.enable = true; eza.enable = true;
yt-dlp.enable = true; yt-dlp.enable = true;
}; };
home-manager.users.krizej.home.packages = with pkgs; [ home-manager.users.krizej.home.packages = with pkgs; [
fortune fortune
xarchiver
gvfs
yad yad
xfce.thunar
xfce.thunar-volman
xfce.thunar-archive-plugin
pavucontrol pavucontrol
pamixer pamixer
@ -57,21 +52,19 @@
ezquake ezquake
vkquake vkquake
ericw-tools-latest ericw-tools-latest
embree # for ericw-tools
tbb # for ericw-tools
trenchbroom trenchbroom
r2modman r2modman
godot_4 godot_4
wineWowPackages.stable
winetricks
libreoffice-qt libreoffice-qt
gimp gimp
sqlitebrowser sqlitebrowser
feh feh
vlc vlc
wineWowPackages.stable
winetricks
gdb gdb
ccls ccls
clang-tools clang-tools

22
programs/thunar.nix Normal file
View file

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