2023-12-05 02:48:58 +00:00
|
|
|
# Craige's NixOS desktop requirements
|
2021-07-09 05:04:25 +00:00
|
|
|
{
|
2022-03-07 14:26:15 +00:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
2021-07-09 05:04:25 +00:00
|
|
|
# Craige's Desktop Packages
|
2021-12-30 00:36:20 +00:00
|
|
|
imports = [
|
|
|
|
../profiles/ebooks.nix
|
2022-05-31 00:22:24 +00:00
|
|
|
../profiles/minecraftClient.nix
|
2021-12-30 00:36:20 +00:00
|
|
|
../profiles/spotify.nix # Spotify settings
|
|
|
|
];
|
2021-07-28 00:27:04 +00:00
|
|
|
|
2021-07-09 05:04:25 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
2021-11-16 04:57:23 +00:00
|
|
|
byobu # text-based window manager and terminal multiplexer.
|
2022-06-19 23:26:22 +00:00
|
|
|
caprine-bin # an elegant Facebook Messenger desktop app
|
2023-12-05 02:48:58 +00:00
|
|
|
element-desktop # A feature-rich client for Matrix.org
|
|
|
|
enlightenment.terminology # Powerful terminal emulator based on EFL
|
2023-09-18 03:47:10 +00:00
|
|
|
firefox # A web browser built from Firefox source tree
|
2024-01-25 12:40:11 +00:00
|
|
|
ffmpeg-full # record, convert and stream audio and video
|
|
|
|
gimp # The GNU Image Manipulation Program
|
2021-11-16 04:57:23 +00:00
|
|
|
gopass # password file manager
|
2024-05-10 06:41:55 +00:00
|
|
|
libreoffice # Comprehensive, professional-quality productivity suite
|
2024-01-25 12:40:11 +00:00
|
|
|
mpd # A flexible, powerful daemon for playing music
|
|
|
|
ncmpcpp # A featureful ncurses based MPD client inspired by ncmpc
|
|
|
|
nextcloud-client # Nextcloud themed desktop client
|
2023-12-05 02:48:58 +00:00
|
|
|
nvme-cli # NVM-Express user space tooling for Linux
|
|
|
|
pandoc # Conversion between documentation formats
|
2024-05-10 06:41:55 +00:00
|
|
|
pwgen # Password generator
|
2024-05-22 11:36:18 +00:00
|
|
|
siji # An iconic bitmap font based on Stlarch with additional glyphs
|
2022-05-31 00:35:52 +00:00
|
|
|
shared-mime-info # A database of common MIME types
|
2024-01-25 12:40:11 +00:00
|
|
|
shotwell # Photo organizer
|
2023-12-05 02:48:58 +00:00
|
|
|
signal-desktop # Private, simple, and secure messenger
|
2024-05-10 06:49:04 +00:00
|
|
|
sshfs # allows remote filesystems to be mounted over SSH
|
2022-09-25 23:11:17 +00:00
|
|
|
sweethome3d.application # design and visualise homes
|
2023-12-05 02:48:58 +00:00
|
|
|
taskwarrior # Highly flexible command-line tool to manage TODO lists
|
2022-12-02 00:34:40 +00:00
|
|
|
termonad # Terminal emulator configurable in Haskell
|
2024-05-10 06:41:55 +00:00
|
|
|
texliveFull # TeX Live environment
|
2024-01-25 12:40:11 +00:00
|
|
|
tmate # Instant Terminal Sharing
|
2023-09-18 03:47:10 +00:00
|
|
|
tor-browser-bundle-bin # Tor Browser Bundle built by torproject.org
|
2024-05-10 06:41:55 +00:00
|
|
|
tuba # Fediverse client
|
2024-01-25 12:40:11 +00:00
|
|
|
unzip # An extraction utility for archives compressed in .zip format
|
2023-12-05 02:48:58 +00:00
|
|
|
vcsh # Version Control System for $HOME
|
2022-01-24 02:13:47 +00:00
|
|
|
yt-dlp # Command-line tool to download videos
|
2021-07-09 05:04:25 +00:00
|
|
|
];
|
|
|
|
}
|