ctucx.git: nixfiles

ctucx' nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 { config, lib, pkgs, ... }:

{

  security.rtkit.enable  = true;

  services.pipewire = {
    enable = true;
    socketActivation = true;

    alsa.enable  = true;
    pulse.enable = true;
  };

  home-manager.users.katja = {
    home.packages = lib.mkIf config.home-manager.users.katja.wayland.windowManager.sway.enable  [
      pkgs.pavucontrol
    ];
  };

}