refactor: move `konsole` from moby/default.nix -> gui/phosh.nix

This commit is contained in:
Colin 2023-02-04 10:00:10 +00:00
parent 0c2d8af448
commit b6685c9e6c
2 changed files with 4 additions and 8 deletions

View File

@ -41,13 +41,6 @@
".config/pulse" # persist pulseaudio volume
];
sane.programs."pkgs.plasma5Packages.konsole" = {
# more reliable terminal
# TODO: move to gui/phosh
package = pkgs.plasma5Packages.konsole;
enableFor.user.colin = true;
};
sane.nixcache.enable = true;
sane.persist.enable = true;
sane.gui.phosh.enable = true;

View File

@ -26,9 +26,10 @@ in
package = null;
suggestedPrograms = [
"guiApps"
"phosh-mobile-settings"
# TODO: see about removing gnome-bluetooth if the in-built gnome-settings bluetooth manager can work
"gnome.gnome-bluetooth"
"phosh-mobile-settings"
"plasma5Packages.konsole" # more reliable terminal
];
};
}
@ -36,8 +37,10 @@ in
sane.programs = {
inherit (pkgs // {
"gnome.gnome-bluetooth" = pkgs.gnome.gnome-bluetooth;
"plasma5Packages.konsole" = pkgs.plasma5Packages.konsole;
})
phosh-mobile-settings
"plasma5Packages.konsole"
# "gnome.gnome-bluetooth"
;
};