wine + gstreamer
This commit is contained in:
parent
c4c7e69192
commit
ef13eac1a7
3 changed files with 85 additions and 7 deletions
67
:q
Normal file
67
:q
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
|
# manage.
|
||||||
|
home.username = "freya";
|
||||||
|
home.homeDirectory = "/home/freya";
|
||||||
|
home.stateVersion = "22.11"; # Please read the comment before changing.
|
||||||
|
|
||||||
|
# This value will set some environment variables to allow home-manager to
|
||||||
|
# function better outside of NixOS
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
targets.genericLinux.enable = true;
|
||||||
|
fonts.fontconfig.enable = true;
|
||||||
|
|
||||||
|
# The home.packages option allows you to install Nix packages into your
|
||||||
|
# environment.
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
# Main packages
|
||||||
|
yt-dlp
|
||||||
|
starship
|
||||||
|
discord
|
||||||
|
thunderbirdPackages.thunderbird-115
|
||||||
|
slack
|
||||||
|
cryptomator
|
||||||
|
pcem
|
||||||
|
cider
|
||||||
|
gzdoom
|
||||||
|
unityhub
|
||||||
|
yuzu-early-access
|
||||||
|
sonar-scanner-cli
|
||||||
|
#steam
|
||||||
|
|
||||||
|
# Gstreamer
|
||||||
|
gst_all_1.gstreamer
|
||||||
|
gst_all_1.gst-plugins-base
|
||||||
|
gst_all_1.gst-plugins-good
|
||||||
|
gst_all_1.gst-plugins-bad
|
||||||
|
gst_all_1.gst-plugins-ugly
|
||||||
|
gst_all_1.gst-libav
|
||||||
|
gst_all_1.gst-vaapi
|
||||||
|
|
||||||
|
# Wine
|
||||||
|
wineWowPackages.stable
|
||||||
|
winetricks
|
||||||
|
|
||||||
|
# Rust
|
||||||
|
rustup
|
||||||
|
gcc-unwrapped
|
||||||
|
openssl
|
||||||
|
|
||||||
|
# Java
|
||||||
|
jdk
|
||||||
|
maven
|
||||||
|
jetbrains.idea-community
|
||||||
|
|
||||||
|
# Lua
|
||||||
|
lua
|
||||||
|
lua52Packages.dkjson
|
||||||
|
lua52Packages.luaposix
|
||||||
|
lua-language-server
|
||||||
|
];
|
||||||
|
|
||||||
|
# Let Home Manager install and manage itself.
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
}
|
||||||
|
|
|
@ -83,8 +83,6 @@
|
||||||
|
|
||||||
"retroarch" ;; gayming
|
"retroarch" ;; gayming
|
||||||
"steam" ;; gayyyyymeeeesss :3
|
"steam" ;; gayyyyymeeeesss :3
|
||||||
"wine-staging"
|
|
||||||
"winetricks"
|
|
||||||
|
|
||||||
|
|
||||||
"swayfx" ;; window manager packages
|
"swayfx" ;; window manager packages
|
||||||
|
|
|
@ -31,6 +31,19 @@
|
||||||
sonar-scanner-cli
|
sonar-scanner-cli
|
||||||
#steam
|
#steam
|
||||||
|
|
||||||
|
# Gstreamer
|
||||||
|
gst_all_1.gstreamer
|
||||||
|
gst_all_1.gst-plugins-base
|
||||||
|
gst_all_1.gst-plugins-good
|
||||||
|
gst_all_1.gst-plugins-bad
|
||||||
|
gst_all_1.gst-plugins-ugly
|
||||||
|
gst_all_1.gst-libav
|
||||||
|
gst_all_1.gst-vaapi
|
||||||
|
|
||||||
|
# Wine
|
||||||
|
wineWowPackages.stable
|
||||||
|
winetricks
|
||||||
|
|
||||||
# Rust
|
# Rust
|
||||||
rustup
|
rustup
|
||||||
gcc-unwrapped
|
gcc-unwrapped
|
||||||
|
|
Loading…
Reference in a new issue