modules: hardware: move 'sound'

This commit is contained in:
Bruno BELANYI 2021-05-29 16:43:32 +02:00
parent 5f0c1f6a79
commit dd19b9dd92
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ ... }:
{
my.modules.sound = {
my.hardware.sound = {
enable = true;
pipewire = {

View File

@ -10,7 +10,6 @@
./media.nix
./nix.nix
./packages.nix
./sound.nix
./upower.nix
./users.nix
];

View File

@ -6,5 +6,6 @@
./bluetooth.nix
./ergodox.nix
./networking.nix
./sound.nix
];
}

View File

@ -1,9 +1,9 @@
{ config, lib, ... }:
let
cfg = config.my.modules.sound;
cfg = config.my.hardware.sound;
in
{
options.my.modules.sound = with lib; {
options.my.hardware.sound = with lib; {
enable = mkEnableOption "sound configuration";
pipewire = {