feat(desktop): add pipewire configurations.
This commit is contained in:
parent
10565d16ca
commit
33f606aebf
4 changed files with 39 additions and 0 deletions
15
modules/linux/home-manager/pipewire.nix
Normal file
15
modules/linux/home-manager/pipewire.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
options = {
|
||||
crony.pipewire.enable = lib.mkEnableOption "Setup some config files for my pipewire/wireplumber setup.";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.crony.pipewire.enable {
|
||||
home.file = {
|
||||
".config/pipewire" = {source = ./configs/pipewire;};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue