NixOS-Configuration/packages.nix

27 lines
361 B
Nix
Raw Normal View History

2023-08-27 23:14:35 +00:00
{ pkgs, ... }:
{
programs = {
zsh.enable = true;
vim.defaultEditor = true;
};
2023-12-31 19:11:11 +00:00
environment.systemPackages = (with pkgs; [
2023-08-27 23:14:35 +00:00
vim
2023-12-31 19:11:11 +00:00
neovim
2023-09-02 03:30:48 +00:00
git
2023-08-27 23:14:35 +00:00
wget
kitty
ranger
2023-12-31 19:11:11 +00:00
lf
2023-08-27 23:14:35 +00:00
firefox
2023-12-31 19:11:11 +00:00
greetd.tuigreet
]);
2023-08-27 23:14:35 +00:00
environment.shells = with pkgs; [ bash zsh ];
xdg.portal.wlr.enable = true;
nixpkgs.config.allowUnfree = true;
}