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
./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

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