we just gettin started

just a few more modules, like bitwarden, syncthing, screenshots
This commit is contained in:
martyTF 2025-12-20 05:59:46 +01:00
parent 6b87cd99c8
commit 5fa40025d0
23 changed files with 227 additions and 61 deletions

21
modules/desktop/audio.nix Normal file
View file

@ -0,0 +1,21 @@
{
config,
pkgs,
inputs,
lib,
...
}:
{
options = {
desktop = {
audio.enable = lib.mkEnableOption "enable audio";
};
};
config = lib.mkIf config.desktop.audio.enable {
home.packages = with pkgs; [
pavucontrol
];
};
}