nixos-config/common/config/packages.nix
Kiana Sheibani 553aceb3da Remove custom VSCodium install
Declarative extensions are far too much of a hassle
to bother with for no real personal benefit. Moving
back to FHS.
2022-01-11 23:18:48 -05:00

47 lines
730 B
Nix

{ config, pkgs, ... }:
let
# nix-direnv with flake support
nix-direnv-with-flakes = pkgs.nix-direnv.override { enableFlakes = true; };
in {
environment.systemPackages = with pkgs; [
ffmpeg
jq
git
wget
libnotify
ripgrep
unzip
tldr
pandoc
pamixer
playerctl
screenfetch
gcc
wob
grim
slurp
imv
direnv
nix-direnv-with-flakes
];
programs.sway.enable = true;
programs.sway.extraPackages = [];
# Necessary for VSCodium to store passwords
services.gnome.gnome-keyring.enable = true;
# direnv setup
nix.extraOptions = ''
keep-derivations = true
keep-outputs = true
'';
environment.pathsToLink = [ "/share/nix-direnv" ];
}