flakes/cfg/winter/packages.nix
2021-05-15 13:08:21 +07:00

16 lines
570 B
Nix

{ config, pkgs, ...}: {
environment.systemPackages = with pkgs; [
git lf msr-tools neofetch neovim nodejs rsync wget
gnupg
glxinfo htop light ncdu xorg.xgamma
alacritty discord-canary element-desktop firefox gnome3.nautilus pavucontrol tor-browser-bundle-bin
(pkgs.writeShellScriptBin "nix-flakes" ''
exec ${pkgs.nixUnstable}/bin/nix --experimental-features "nix-command flakes" "$@"
'')
];
environment.variables.EDITOR = "nvim";
programs.steam.enable = true;
services.gnome.sushi.enable = true;
services.ipfs.enable = true;
}