nixos-config/common/full-install.nix

45 lines
670 B
Nix
Raw Normal View History

2024-04-17 22:28:27 +02:00
{pkgs, ...}: {
2024-04-17 20:39:12 +02:00
# Enable CUPS to print documents.
services.printing.enable = true;
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
environment.systemPackages = with pkgs; [
2024-04-22 05:51:31 +02:00
bat
nextdns
# need to test
helix
holehe
smartmontools
cheat
lazygit
ripgrep
jq
yq
neofetch
tldr
dust
powertop
fzf
atuin
zellij
eza
lapce
gotty
gping
yazi
vulnix # once im on stable
2024-04-17 20:39:12 +02:00
];
2024-04-17 22:28:27 +02:00
}