49 lines
758 B
Nix
49 lines
758 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
|
|
|
|
emacs
|
|
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" ];
|
|
}
|