themes and services

fix errors in themes and service setup
This commit is contained in:
2026-03-18 21:51:06 +01:00
parent e5347f74f8
commit 5e1e3e1e84
5 changed files with 26 additions and 4 deletions

View File

@@ -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";

View File

@@ -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 = [
{

View File

@@ -1,6 +1,8 @@
{ ... }:
{ pkgs, ... }:
{
home.packages = with pkgs; [ nextcloud-client ];
services.nextcloud-client = {
enable = true;
startInBackground = true;

View File

@@ -11,6 +11,7 @@
./hyprlock.nix
./nvim.nix
./taskwarrior.nix
./qt.nix
];
catppuccin = {

View File

@@ -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
];
}