40 lines
821 B
Nix
40 lines
821 B
Nix
{ config, lib, inputs, pkgs, ... }: {
|
|
|
|
## Permitir pacotes não-livres
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
## Aplicativos sociais
|
|
inputs.zen-browser.packages.${system}.default
|
|
inputs.hayase.packages.${pkgs.system}.default
|
|
bitwarden-desktop
|
|
protonvpn-gui
|
|
|
|
## Utilitários do sistema e dev tools
|
|
nh
|
|
home-manager
|
|
vulkan-tools
|
|
vulkan-loader
|
|
vulkan-utility-libraries
|
|
gcc
|
|
preload
|
|
ethtool
|
|
efibootmgr
|
|
docker-compose
|
|
podman
|
|
distroshelf
|
|
distrobox
|
|
freerdp
|
|
dmidecode
|
|
winboat
|
|
gitFull
|
|
kdePackages.partitionmanager
|
|
|
|
## inputs stable
|
|
#inputs.nixpkgs-stable.legacyPackages.${pkgs.stdenv.hostPlatform.system}
|
|
];
|
|
|
|
programs.gpu-screen-recorder.enable = true;
|
|
|
|
}
|