You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nixos/modules/personal/gui/extra.nix

47 lines
760 B

{ pkgs, config, lib, ... }:
10 months ago
let cfg = config.personal.gui; in
10 months ago
{
options.personal.gui.extra = lib.mkEnableOption "extra";
5 months ago
config.environment = lib.mkIf cfg.extra {
systemPackages = with pkgs; [
thunderbird
element-desktop
signal-desktop
unstable.zotero
unstable.obsidian
spotify
gimp
texlive.combined.scheme-full
evince
pdfpc
calibre
transmission
transmission-gtk
drive
libreoffice
obs-studio
10 months ago
5 months ago
xournalpp
inkscape
10 months ago
5 months ago
kdenlive
tor-browser-bundle-bin
zoom-us
ffmpeg
audio-recorder
speechd
krop
10 months ago
5 months ago
bitwarden
neomutt
5 months ago
liferea
5 months ago
];
shellAliases = {
mutt = "neomutt";
};
};
10 months ago
}