themes and services
fix errors in themes and service setup
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
programs.taskwarrior = {
|
programs.taskwarrior = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.taskwarrior3;
|
package = pkgs.taskwarrior3;
|
||||||
dataLocation = "~/tasks"; # TODO: change to Nextcloud again
|
dataLocation = "~/Nextcloud/tasks";
|
||||||
config = {
|
config = {
|
||||||
uda.parentName = {
|
uda.parentName = {
|
||||||
type = "string";
|
type = "string";
|
||||||
|
|||||||
@@ -7,16 +7,18 @@
|
|||||||
systemdTarget = "graphical-session.target";
|
systemdTarget = "graphical-session.target";
|
||||||
settings = [
|
settings = [
|
||||||
{
|
{
|
||||||
profile.name = "laptop undocked";
|
profile.name = "laptop-undocked";
|
||||||
profile.outputs = [ { criteria = "eDP-1"; } ];
|
profile.outputs = [ { criteria = "eDP-1"; } ];
|
||||||
profile.exec = [
|
profile.exec = [
|
||||||
"systemctl --user start hypridle.service"
|
"systemctl --user start hypridle.service"
|
||||||
|
"eww reload"
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
profile.name = "laptop docked";
|
profile.name = "laptop-docked";
|
||||||
profile.exec = [
|
profile.exec = [
|
||||||
"systemctl --user start hypridle.service"
|
"systemctl --user start hypridle.service"
|
||||||
|
"eww reload"
|
||||||
];
|
];
|
||||||
profile.outputs = [
|
profile.outputs = [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
home.packages = with pkgs; [ nextcloud-client ];
|
||||||
|
|
||||||
services.nextcloud-client = {
|
services.nextcloud-client = {
|
||||||
enable = true;
|
enable = true;
|
||||||
startInBackground = true;
|
startInBackground = true;
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
./hyprlock.nix
|
./hyprlock.nix
|
||||||
./nvim.nix
|
./nvim.nix
|
||||||
./taskwarrior.nix
|
./taskwarrior.nix
|
||||||
|
./qt.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
catppuccin = {
|
catppuccin = {
|
||||||
|
|||||||
17
home/themes/catppuccin/qt.nix
Normal file
17
home/themes/catppuccin/qt.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user