diff --git a/home/programs/taskwarrior/default.nix b/home/programs/taskwarrior/default.nix index 119bedd..44b70de 100644 --- a/home/programs/taskwarrior/default.nix +++ b/home/programs/taskwarrior/default.nix @@ -12,7 +12,7 @@ programs.taskwarrior = { enable = true; package = pkgs.taskwarrior3; - dataLocation = "~/tasks"; # TODO: change to Nextcloud again + dataLocation = "~/Nextcloud/tasks"; config = { uda.parentName = { type = "string"; diff --git a/home/services/kanshi.nix b/home/services/kanshi.nix index efa8ac2..96b94f5 100644 --- a/home/services/kanshi.nix +++ b/home/services/kanshi.nix @@ -7,16 +7,18 @@ systemdTarget = "graphical-session.target"; settings = [ { - profile.name = "laptop undocked"; + profile.name = "laptop-undocked"; profile.outputs = [ { criteria = "eDP-1"; } ]; profile.exec = [ "systemctl --user start hypridle.service" + "eww reload" ]; } { - profile.name = "laptop docked"; + profile.name = "laptop-docked"; profile.exec = [ "systemctl --user start hypridle.service" + "eww reload" ]; profile.outputs = [ { diff --git a/home/services/nextcloud.nix b/home/services/nextcloud.nix index af8e4de..61b0d7c 100644 --- a/home/services/nextcloud.nix +++ b/home/services/nextcloud.nix @@ -1,6 +1,8 @@ -{ ... }: +{ pkgs, ... }: { + home.packages = with pkgs; [ nextcloud-client ]; + services.nextcloud-client = { enable = true; startInBackground = true; diff --git a/home/themes/catppuccin/default.nix b/home/themes/catppuccin/default.nix index 66dfd91..bef3a47 100644 --- a/home/themes/catppuccin/default.nix +++ b/home/themes/catppuccin/default.nix @@ -11,6 +11,7 @@ ./hyprlock.nix ./nvim.nix ./taskwarrior.nix + ./qt.nix ]; catppuccin = { diff --git a/home/themes/catppuccin/qt.nix b/home/themes/catppuccin/qt.nix new file mode 100644 index 0000000..71f6cad --- /dev/null +++ b/home/themes/catppuccin/qt.nix @@ -0,0 +1,17 @@ +{ config, pkgs, ... }: +{ + qt = { + enable = true; + platformTheme.name = "qtct"; + style.name = "kvantum"; + }; + + home.packages = with pkgs; [ + (catppuccin-kvantum.override { + variant = "mocha"; + accent = "pink"; + }) + libsForQt5.qtstyleplugin-kvantum + libsForQt5.qt5ct + ]; +}