This commit is contained in:
LavaDesu 2021-05-11 14:32:58 +07:00
commit 2448f2fc1b
Signed by: cilly
GPG key ID: 6500251E087653C9
9 changed files with 285 additions and 0 deletions

12
cfg/winter/packages.nix Normal file
View file

@ -0,0 +1,12 @@
{ 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" "$@"
'')
];
}