modules: hardware: move 'sound'
This commit is contained in:
parent
f9bcf79430
commit
af67d04992
|
@ -1,6 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
my.modules.sound = {
|
||||
my.hardware.sound = {
|
||||
enable = true;
|
||||
|
||||
pipewire = {
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
./media.nix
|
||||
./nix.nix
|
||||
./packages.nix
|
||||
./sound.nix
|
||||
./upower.nix
|
||||
./users.nix
|
||||
];
|
||||
|
|
|
@ -6,5 +6,6 @@
|
|||
./bluetooth.nix
|
||||
./ergodox.nix
|
||||
./networking.nix
|
||||
./sound.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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 = {
|
Loading…
Reference in a new issue