Bunch More Packages

- Add thunar file manager to dwm
- Add nitrogen wallpaper setter to dwm
- Add rclone, sweethome 3D, mangal, qalculate-gtk, octave, and
  qbittorrent packages
This commit is contained in:
Sravan Balaji 2024-03-31 10:16:17 -04:00
parent 0adc8dadcd
commit b1c750b960
8 changed files with 42 additions and 0 deletions

View File

@ -25,8 +25,11 @@
# Add dependencies for dwmipc / polybar communication patches
buildInputs = previousAttrs.buildInputs ++ (with pkgs; [
# Dependencies for swallow patch
xorg.libxcb
xorg.xcbutil
# Dependencies for dwm-ipc patch
yajl
jsoncpp
]);
@ -49,12 +52,25 @@
executable = "/bin/redshift-gtk";
};
# File Manager
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-volman
thunar-archive-plugin
thunar-media-tags-plugin
];
};
environment.systemPackages = with pkgs; [
# X11 Utilities
arandr
autorandr
unclutter-xfixes
# Wallpaper
nitrogen
# Terminal
kitty

View File

@ -0,0 +1,7 @@
{ config, lib, pkgs, userSettings, ... }:
{
environment.systemPackages = with pkgs; [
rclone
];
}

View File

@ -9,5 +9,6 @@
./backups.nix
./user-shell.nix
./samba.nix
./cloud.nix
];
}

View File

@ -5,5 +5,6 @@
blender
obs-studio
freecad
sweethome3d.application
]);
}

View File

@ -9,6 +9,7 @@
spotify
spicetify-cli
ani-cli
mangal
calibre
]);
}

View File

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
qalculate-gtk
octave
];
}

View File

@ -10,5 +10,6 @@
./xdg.nix
./screenshot.nix
./phone.nix
./downloads.nix
];
}

View File

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
qbittorrent-qt5
];
}