diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/home/suites/desktop/default.nix | 4 | ||||
| -rw-r--r-- | modules/home/tools/default.nix | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/modules/home/suites/desktop/default.nix b/modules/home/suites/desktop/default.nix index 530a63a..985dca2 100644 --- a/modules/home/suites/desktop/default.nix +++ b/modules/home/suites/desktop/default.nix @@ -16,6 +16,10 @@ in { firefox.enable = true; }; + tools = { + mute.enable = true; + }; + desktop.components = { i3.enable = true; diff --git a/modules/home/tools/default.nix b/modules/home/tools/default.nix index 9627d0f..98b37c7 100644 --- a/modules/home/tools/default.nix +++ b/modules/home/tools/default.nix @@ -11,5 +11,8 @@ with lib; with lib.${namespace}; { ]; persist = [ ".wine" ]; }) + (mkSimpleTool "mute" { + packages = [ cxl.mute ]; + }) ]; } |