base-graphical: init with pipewire config

This commit is contained in:
Katherina Walshe-Grey 2024-09-11 05:43:35 +01:00
parent 3fc4efab9c
commit aeab801602
6 changed files with 42 additions and 23 deletions

View file

@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.qenya.base-graphical;
in
{
imports = [
./sound.nix
];
options.qenya.base-graphical.enable = mkEnableOption "Base configuration for graphical environments";
config = mkIf cfg.enable {
services.xserver.enable = true;
};
}