diff --git a/modules/hardware/audio.nix b/modules/hardware/audio.nix index 16713a0..ec728ad 100644 --- a/modules/hardware/audio.nix +++ b/modules/hardware/audio.nix @@ -1,4 +1,5 @@ { +config = { hardware.pulseaudio.support32Bit = true; services.pipewire = { enable = true; @@ -6,4 +7,5 @@ alsa.support32Bit = true; pulse.enable = true; }; + }; } diff --git a/modules/hardware/boot.nix b/modules/hardware/boot.nix index dcf7f43..4b9f030 100644 --- a/modules/hardware/boot.nix +++ b/modules/hardware/boot.nix @@ -1,5 +1,5 @@ { - boot.loader = { + config.boot.loader = { systemd-boot.enable = true; efi = { canTouchEfiVariables = true; diff --git a/modules/hardware/network.nix b/modules/hardware/network.nix index f29d881..360c968 100644 --- a/modules/hardware/network.nix +++ b/modules/hardware/network.nix @@ -1,3 +1,3 @@ { - networking.networkmanager.enable = true; + config.networking.networkmanager.enable = true; }