flakes/cfg/winter/packages.nix

14 lines
435 B
Nix
Raw Normal View History

2021-05-11 14:32:58 +07:00
{ config, pkgs, ...}: {
environment.systemPackages = with pkgs; [
2021-05-11 21:48:20 +07:00
git lf neofetch neovim nodejs rsync wget
2021-05-11 14:32:58 +07:00
gnupg
light glxinfo
2021-05-11 21:48:20 +07:00
alacritty discord-canary element-desktop firefox gnome3.nautilus pavucontrol tor-browser-bundle-bin
2021-05-11 14:32:58 +07:00
(pkgs.writeShellScriptBin "nix-flakes" ''
exec ${pkgs.nixUnstable}/bin/nix --experimental-features "nix-command flakes" "$@"
'')
];
2021-05-11 21:48:20 +07:00
services.gnome3.sushi.enable = true;
2021-05-11 14:32:58 +07:00
}