Use KDE on hypnos

This commit is contained in:
Jordan Holt 2024-04-21 22:36:10 +01:00
parent 0b1649033c
commit fc1281a397
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520
3 changed files with 8 additions and 0 deletions

View File

@ -19,6 +19,8 @@
browsers = {
firefox.enable = true;
};
gnome.enable = lib.mkForce false;
kde.enable = true;
media.recording = {
audio.enable = true;
};

View File

@ -19,8 +19,11 @@ in {
desktopManager.plasma5.enable = true;
};
networking.networkmanager.enable = true;
user.packages = with pkgs; [
kmail
mpv
];
environment.systemPackages = with pkgs; [

View File

@ -12,6 +12,9 @@ in {
config = lib.mkIf cfg.enable {
user.packages = with pkgs; [
(if config.modules.desktop.kde.enable == true then libreoffice-qt else libreoffice)
hunspell
hunspellDicts.en-gb-large
hunspellDicts.en-us-large
];
};
}