mio-ops/profiles/desktopCraige.nix

42 lines
1.6 KiB
Nix
Raw Normal View History

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
../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
firefox # A web browser built from Firefox source tree
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
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
shared-mime-info # A database of common MIME types
shotwell # Photo organizer
2023-12-05 02:48:58 +00:00
signal-desktop # Private, simple, and secure messenger
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
tmate # Instant Terminal Sharing
tor-browser-bundle-bin # Tor Browser Bundle built by torproject.org
unzip # An extraction utility for archives compressed in .zip format
2023-12-05 02:48:58 +00:00
vcsh # Version Control System for $HOME
2023-07-20 00:11:11 +00:00
whalebird # Mastodon client
2022-01-24 02:13:47 +00:00
yt-dlp # Command-line tool to download videos
2021-07-09 05:04:25 +00:00
];
}