dotfiles-nix/nix/users/nicolaivds/general/packages.nix
2023-10-13 15:56:14 +02:00

66 lines
1.1 KiB
Nix

{ pkgs, inputs, ... }:
{
#Overlays/Overrides
nixpkgs.overlays = [
(self: super: {
waybar = super.waybar.overrideAttrs (oldAttrs: {
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
});
})
];
programs.direnv.enable = true;
#Packages
home.packages = with pkgs; [
betterbird
bottles
brave
btop
cliphist
foot
gamemode
gamescope
glibc
go
grim
hplipWithPlugin
inputs.maxfetch.packages.${pkgs.system}.default
inputs.orcaslicer.packages.${pkgs.system}.orca-slicer
libreoffice
lutris
mpv
neofetch
neovim
nix-prefetch-github
obs-studio
obs-studio-plugins.obs-pipewire-audio-capture
obs-studio-plugins.obs-vkcapture
obs-studio-plugins.wlrobs
pavucontrol
picard
playerctl
protontricks
protonup-qt
qbittorrent
remmina
slurp
steamtinkerlaunch
swayidle
swaylock-effects
swaynotificationcenter
swww
vlc
waybar
wine-wayland
winetricks
wl-clipboard
wlogout
wofi
xdg-utils
xdotool
xorg.xprop
xorg.xwininfo
];
}