summaryrefslogtreecommitdiff
path: root/home-manager/modules/apps/desktop/default.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-03-29 23:37:55 +0100
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-03-29 23:37:55 +0100
commitb270d32457c2a4f499a17efebac508bac401924b (patch)
tree827731ea14f5ca53920f1b081f9b4d2901a68f19 /home-manager/modules/apps/desktop/default.nix
parent0807c93d8348b2f537bdbe16886af3e51eb9a90a (diff)
wayland fixes
Diffstat (limited to 'home-manager/modules/apps/desktop/default.nix')
-rw-r--r--home-manager/modules/apps/desktop/default.nix36
1 files changed, 35 insertions, 1 deletions
diff --git a/home-manager/modules/apps/desktop/default.nix b/home-manager/modules/apps/desktop/default.nix
index 4bc7478..b070444 100644
--- a/home-manager/modules/apps/desktop/default.nix
+++ b/home-manager/modules/apps/desktop/default.nix
@@ -1,3 +1,37 @@
-{lib, ...}: with lib; {
+{lib, pkgs, ...}: with lib; {
imports = [ ./hyprland.nix ];
+
+ home.packages = with pkgs; [
+ speedcrunch
+ thunderbird
+ element-desktop
+ filelight
+ libreoffice
+ evince
+ obsidian
+ krita
+ hugo
+ qalculate-qt
+ libsForQt5.kdeconnect-kde
+ libreoffice-qt6-fresh
+ obsidian
+ krita
+ kitty
+
+ spotify
+ prismlauncher
+ ani-cli
+ vlc
+ mpv
+ openttd
+ anki-bin
+
+ #Theme
+ qt6Packages.qt6ct
+ kdePackages.qtstyleplugin-kvantum
+ (catppuccin-kvantum.override {
+ accent = "pink";
+ variant = "mocha";
+ })
+ ];
}