mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 18:41:34 +01:00
Rename module namespaces
This commit is contained in:
parent
0dcf8cc292
commit
ca1357b2d4
35 changed files with 4 additions and 4 deletions
13
modules/home/equalizer/default.nix
Normal file
13
modules/home/equalizer/default.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.myConfig.equalizer.enable = lib.mkEnableOption "";
|
||||
|
||||
config = lib.mkIf config.myConfig.equalizer.enable {
|
||||
services.easyeffects.enable = true;
|
||||
|
||||
xdg.configFile."easyeffects/output" = {
|
||||
source = ./output;
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue