48 lines
706 B
Nix
48 lines
706 B
Nix
# Core desktop packages for lightweight desktop systems.
|
|
|
|
{ pkgs, inputs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
acpitool
|
|
alire
|
|
asciinema
|
|
bibclean
|
|
bitwarden-cli
|
|
bitwarden-desktop
|
|
bluez
|
|
claude-code
|
|
cmus
|
|
direnv
|
|
dmenu
|
|
emacs
|
|
erlang
|
|
feh
|
|
fira-code
|
|
firefox
|
|
ghostty
|
|
gnat15
|
|
gnat15Packages.gpr2
|
|
gnat15Packages.gprbuild
|
|
gnome-disk-utility
|
|
go-font
|
|
graphviz
|
|
i3
|
|
i3lock
|
|
python312Packages.ipython
|
|
networkmanagerapplet
|
|
obsidian
|
|
pavucontrol
|
|
pmutils
|
|
rebar3
|
|
rofi
|
|
scrot
|
|
syncthing
|
|
vim
|
|
xfce.thunar
|
|
xfce.thunar-volman
|
|
xfce.xfce4-power-manager
|
|
xss-lock
|
|
];
|
|
}
|