mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-03 08:25:39 +02:00
desktop: Disable fcitx / udisks / pipewire for phosh
This commit is contained in:
parent
a9bebdc5f6
commit
abc5dfee07
@ -61,7 +61,7 @@ in
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
i18n.inputMethod = {
|
i18n.inputMethod = mkIf (!phone) {
|
||||||
enabled = "fcitx5";
|
enabled = "fcitx5";
|
||||||
|
|
||||||
fcitx5 = {
|
fcitx5 = {
|
||||||
@ -71,7 +71,7 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
udisks2 = {
|
udisks2 = mkIf (!phone) {
|
||||||
enable = true;
|
enable = true;
|
||||||
mountOnMedia = true;
|
mountOnMedia = true;
|
||||||
};
|
};
|
||||||
@ -81,12 +81,12 @@ in
|
|||||||
excludePackages = [ pkgs.xterm ];
|
excludePackages = [ pkgs.xterm ];
|
||||||
};
|
};
|
||||||
|
|
||||||
pipewire = {
|
pipewire = mkIf (!phone) {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
alsa = {
|
alsa = {
|
||||||
enable = true;
|
enable = true;
|
||||||
support32Bit = mkIf (!phone) true;
|
support32Bit = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user