mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
feat: add wine and audio production modules
This commit is contained in:
parent
46b401cf8d
commit
6e2f583df1
5 changed files with 23 additions and 7 deletions
|
@ -14,6 +14,8 @@
|
|||
../../modules/linux/core
|
||||
../../modules/linux/hamachi
|
||||
../../modules/linux/desktop-portal
|
||||
../../modules/linux/audio-prod
|
||||
../../modules/linux/wine
|
||||
../../overlays
|
||||
|
||||
catppuccin.nixosModules.catppuccin
|
||||
|
|
8
modules/linux/audio-prod/default.nix
Normal file
8
modules/linux/audio-prod/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
reaper
|
||||
yabridge
|
||||
yabridgectl
|
||||
];
|
||||
}
|
|
@ -7,12 +7,7 @@
|
|||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
# If you want to use JACK applications, uncomment this
|
||||
#jack.enable = true;
|
||||
|
||||
# use the example session manager (no others are packaged yet so this is enabled by default,
|
||||
# no need to redefine it in your config for now)
|
||||
#media-session.enable = true;
|
||||
jack.enable = true;
|
||||
};
|
||||
|
||||
services.playerctld.enable = true;
|
||||
|
|
12
modules/linux/wine/default.nix
Normal file
12
modules/linux/wine/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
winetricks
|
||||
wine
|
||||
];
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
wine = super.wineWowPackages.stable;
|
||||
})
|
||||
];
|
||||
}
|
|
@ -16,7 +16,6 @@ in
|
|||
bitwarden-desktop
|
||||
modrinth-app
|
||||
lutris
|
||||
wine
|
||||
sbctl
|
||||
r2modman
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue