WIP: rewrite config #618

Draft
darkkirb wants to merge 345 commits from rewrite into main
2 changed files with 12 additions and 0 deletions
Showing only changes of commit e504e6ac2b - Show all commits

View file

@ -3,6 +3,7 @@
imports = [
./steam
./kodi/system-config.nix
./pipewire.nix
];
home-manager.users.darkkirb.imports =
if config.isGraphical then

View file

@ -0,0 +1,11 @@
{ ... }:
{
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
}