PortableNixOS/packages.nix
Johannes Hendrik Gerard van der Weide 5979630e28 Initial commit :3
2024-10-03 14:30:17 +02:00

54 lines
878 B
Nix

{ pkgs, ... }:
{
environment = {
# Default shell
shells = [ pkgs.zsh ];
# Other defaults
variables = {
EDITOR = "hx";
SYSTEMD_EDITOR = "hx";
VISUAL = "hx";
};
# Nixos default installed packages (this is set to get rid of nano >:3 )
defaultPackages = with pkgs; [
nvi
perl
rsync
strace
];
# Systemwide installed packages
systemPackages = with pkgs; [
bottom
curl
wget
git
helix
lazygit
hyfetch
fastfetch
# System
gnome-control-center
nautilus
file-roller
firefox
thunderbird
blackbox-terminal
apostrophe
onlyoffice-bin
keepassxc
stremio
vesktop
signal-desktop
];
};
# Fonts
fonts.packages = with pkgs; [
ibm-plex
google-fonts
vistafonts
];
}