flakes/cfg/winter/packages.nix
2021-05-11 18:13:14 +07:00

12 lines
377 B
Nix

{ config, pkgs, ...}: {
environment.systemPackages = with pkgs; [
git neofetch neovim nodejs rsync wget
gnupg
light glxinfo
alacritty discord-canary element-desktop firefox pavucontrol tor-browser-bundle-bin
(pkgs.writeShellScriptBin "nix-flakes" ''
exec ${pkgs.nixUnstable}/bin/nix --experimental-features "nix-command flakes" "$@"
'')
];
}