18 lines
268 B
Nix
18 lines
268 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
qutebrowser
|
|
thunderbird
|
|
alacritty
|
|
gparted
|
|
xfce.thunar
|
|
ffmpeg
|
|
logseq
|
|
jetbrains.idea-ultimate
|
|
vscodium # consider vscodium-fhs
|
|
texlive.combined.scheme-medium
|
|
telegram-desktop
|
|
];
|
|
}
|