Files
dotfiles/Satori/pkgs.nix
2021-05-02 09:24:02 +05:30

43 lines
558 B
Nix

{lib, config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
xclip
xorg.xkbcomp
xorg.xmodmap
ffmpeg
p7zip
git
glxinfo
sxiv
jq
mono
vim
wineWowPackages.staging
neofetch
w3m
gnumake
pciutils
jdk
ntfs3g
python38
htop
nodejs
wget
ripgrep
patchelf
feh
dwm
dmenu
st
kbd
];
programs.steam.enable = true;
nix = {
package = pkgs.nixUnstable;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
}