nix-files/hosts/common/programs/default.nix

44 lines
788 B
Nix
Raw Normal View History

2023-06-09 00:42:36 +00:00
{ pkgs, ... }:
{
2023-04-26 00:25:08 +00:00
imports = [
./aerc.nix
./assorted.nix
2023-06-15 06:34:50 +00:00
./cozy.nix
2023-04-26 00:26:05 +00:00
./git.nix
./gnome-feeds.nix
./gpodder.nix
2023-06-29 09:43:17 +00:00
./gthumb.nix
./imagemagick.nix
./jellyfin-media-player.nix
2023-04-26 00:36:37 +00:00
./kitty
2023-06-13 04:16:00 +00:00
./komikku.nix
./koreader
./libreoffice.nix
2023-07-02 01:40:36 +00:00
./lemoa.nix
2023-06-25 02:05:50 +00:00
./mepo.nix
2023-04-26 00:28:11 +00:00
./mpv.nix
./msmtp.nix
./neovim.nix
./newsflash.nix
2023-06-29 21:24:32 +00:00
./nix-index.nix
./offlineimap.nix
./ripgrep.nix
2023-06-20 08:38:11 +00:00
./sfeed.nix
./splatmoji.nix
2023-06-09 00:42:36 +00:00
./steam.nix
./sublime-music.nix
2023-04-26 00:35:01 +00:00
./vlc.nix
./web-browser.nix
2023-05-10 04:52:12 +00:00
./wireshark.nix
./zeal.nix
2023-04-26 00:46:35 +00:00
./zsh
2023-04-26 00:25:08 +00:00
];
config = {
# XXX: this might not be necessary. try removing this and cacert.unbundled (servo)?
environment.etc."ssl/certs".source = "${pkgs.cacert.unbundled}/etc/ssl/certs/*";
};
}