nixos-config/common/config/packages.nix
Kiana Sheibani 2f610c6fc2 Miscellaneous config changes
- Updated flake inputs
- Fixed alacritty config
- Added sway exit keybind
- Added brightness control
- Created second wob bar for brightness
- Added networkmanager to laptop
2022-03-01 18:43:29 -05:00

48 lines
748 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
brightnessctl
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" ];
}