home-manager/gui: Ensure pavucontrol is not installed on Darwin
This commit is contained in:
parent
c6780a146f
commit
9c92ddc0f5
@ -18,7 +18,6 @@ in
|
|||||||
(nerdfonts.override {
|
(nerdfonts.override {
|
||||||
fonts = [ "DroidSansMono" "SourceCodePro" ];
|
fonts = [ "DroidSansMono" "SourceCodePro" ];
|
||||||
})
|
})
|
||||||
pavucontrol
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -31,7 +30,7 @@ in
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
(mkIf cfg.standalone {
|
(mkIf (cfg.standalone && !pkgs.stdenv.isDarwin) {
|
||||||
systemd.user = {
|
systemd.user = {
|
||||||
services = {
|
services = {
|
||||||
wait-for-sway = {
|
wait-for-sway = {
|
||||||
@ -73,6 +72,7 @@ in
|
|||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
wtype
|
wtype
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
|
pavucontrol
|
||||||
];
|
];
|
||||||
|
|
||||||
pointerCursor = {
|
pointerCursor = {
|
||||||
|
Loading…
Reference in New Issue
Block a user