nixos-config/common/config/packages.nix

56 lines
921 B
Nix
Raw Normal View History

2022-10-08 21:30:22 -04:00
{ config, pkgs, ... }:
let
# nix-direnv with flake support
nix-direnv-with-flakes = pkgs.nix-direnv.override { enableFlakes = true; };
in {
2022-01-06 21:14:02 -05:00
environment.systemPackages = with pkgs; [
ffmpeg
jq
git
wget
libnotify
ripgrep
unzip
tldr
pamixer
brightnessctl
2022-01-06 22:47:39 -05:00
playerctl
2022-01-06 21:14:02 -05:00
2022-10-21 09:19:25 -04:00
pandoc
gnuplot
graphviz
2022-10-24 21:55:43 -04:00
aspell
aspellDicts.en
aspellDicts.en-computers
aspellDicts.en-science
2022-01-06 21:14:02 -05:00
2022-10-21 09:19:25 -04:00
gcc
2022-01-06 21:14:02 -05:00
wob
grim
slurp
imv
direnv
nix-direnv-with-flakes
2022-01-06 21:14:02 -05:00
];
programs.sway.enable = true;
programs.sway.extraPackages = [];
# Necessary for VSCodium to store passwords
services.gnome.gnome-keyring.enable = true;
2022-05-29 19:15:50 -04:00
services.emacs.enable = true;
2022-10-08 21:30:22 -04:00
services.emacs.package = pkgs.emacs28-gtk;
2022-05-29 19:15:50 -04:00
# direnv setup
nix.extraOptions = ''
keep-derivations = true
keep-outputs = true
'';
environment.pathsToLink = [ "/share/nix-direnv" ];
2022-01-06 21:14:02 -05:00
}