easyeffects module
This commit is contained in:
parent
c7923e6ae6
commit
76ee520d78
3 changed files with 18 additions and 4 deletions
4
home.nix
4
home.nix
|
@ -32,10 +32,6 @@
|
||||||
brave
|
brave
|
||||||
];
|
];
|
||||||
|
|
||||||
# for easyeffects
|
|
||||||
dconf.enable = true;
|
|
||||||
services.easyeffects.enable = true;
|
|
||||||
|
|
||||||
home.file = { };
|
home.file = { };
|
||||||
|
|
||||||
home.sessionPath = [
|
home.sessionPath = [
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
./user.nix
|
./user.nix
|
||||||
./rose-pine-cursor.nix
|
./rose-pine-cursor.nix
|
||||||
./projects.nix
|
./projects.nix
|
||||||
|
./easyeffects.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
snowhawk.user.enable = lib.mkDefault true;
|
snowhawk.user.enable = lib.mkDefault true;
|
||||||
|
|
17
home/modules/easyeffects.nix
Normal file
17
home/modules/easyeffects.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
|
||||||
|
{ lib, config, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.snowhawk.easyeffects;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.snowhawk.easyeffects = {
|
||||||
|
enable = lib.mkEnableOption "easyeffects";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
# for easyeffects
|
||||||
|
dconf.enable = true;
|
||||||
|
services.easyeffects.enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue