mio-ops/profiles/desktopCraige.nix

25 lines
684 B
Nix
Raw Permalink Normal View History

2021-07-09 05:04:25 +00:00
# Craige's desktop requirements
{
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
2021-11-16 04:57:23 +00:00
gopass # password file manager
shared-mime-info # A database of common MIME types
2022-09-25 23:11:17 +00:00
sweethome3d.application # design and visualise homes
2022-12-02 00:34:40 +00:00
termonad # Terminal emulator configurable in Haskell
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
];
}