2022-10-08 21:30:22 -04:00
|
|
|
{ config, pkgs, ... }:
|
2022-01-11 20:43:40 -05:00
|
|
|
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
|
2022-03-01 18:40:48 -05:00
|
|
|
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-26 15:54:00 -04:00
|
|
|
(aspellWithDicts (ps: with ps; [ en en-computers en-science ]))
|
2022-01-06 21:14:02 -05:00
|
|
|
|
2022-10-21 09:19:25 -04:00
|
|
|
gcc
|
2022-01-11 20:43:40 -05:00
|
|
|
|
|
|
|
direnv
|
|
|
|
nix-direnv-with-flakes
|
2022-01-06 21:14:02 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
programs.sway.enable = true;
|
|
|
|
programs.sway.extraPackages = [];
|
2022-01-11 20:43:40 -05:00
|
|
|
|
|
|
|
# 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
|
|
|
|
2022-01-11 20:43:40 -05:00
|
|
|
# direnv setup
|
|
|
|
|
|
|
|
nix.extraOptions = ''
|
|
|
|
keep-derivations = true
|
|
|
|
keep-outputs = true
|
|
|
|
'';
|
|
|
|
|
|
|
|
environment.pathsToLink = [ "/share/nix-direnv" ];
|
2022-01-06 21:14:02 -05:00
|
|
|
}
|