re-enable audio...

This commit is contained in:
Chris Kruining 2024-07-24 22:17:07 +02:00
parent 4490ca84bd
commit 6de1355091
4 changed files with 5 additions and 2 deletions

View file

@ -5,6 +5,7 @@
modules = { modules = {
themes.active = "everforest"; themes.active = "everforest";
system.audio = true;
networking.enable = true; networking.enable = true;
desktop = { desktop = {

View file

@ -5,6 +5,7 @@
modules = { modules = {
themes.active = "everforest"; themes.active = "everforest";
system.audio.enable = true;
networking.enable = true; networking.enable = true;
develop = { develop = {

View file

@ -5,6 +5,7 @@
modules = { modules = {
themes.active = "everforest"; themes.active = "everforest";
system.audio = true;
networking.enable = true; networking.enable = true;
desktop = { desktop = {

View file

@ -3,10 +3,10 @@ let
inherit (lib.attrsets) attrValues; inherit (lib.attrsets) attrValues;
inherit (lib.modules) mkIf; inherit (lib.modules) mkIf;
cfg = config.modules.hardware.pipewire; cfg = config.modules.system.audio;
in in
{ {
options.modules.hardware.pipewire = let options.modules.system.audio = let
inherit (lib.options) mkEnableOption; inherit (lib.options) mkEnableOption;
in in
{ {