calcite: add notification center and kdeconnect

This commit is contained in:
xinyangli 2024-11-14 15:48:11 +08:00
parent 854f450677
commit f1079f3095
Signed by: xin
SSH key fingerprint: SHA256:UU5pRTl7NiLFJbWJZa+snLylZSXIz5rgHmwjzv8v4oE
9 changed files with 65 additions and 22 deletions

View file

@ -62,7 +62,14 @@ in
str
path
];
default = "";
default = pkgs.writeText "gtklock-style.css" ''
window {
background-image: url("${config.custom-hm.gui.wallpaper}");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
'';
description = ''
The css file to be used for gtklock.
'';
@ -79,7 +86,9 @@ in
modules = mkOption {
type = listOf (either package str);
default = [ ];
default = [
# "${pkgs.gtklock-playerctl-module.outPath}/lib/gtklock/playerctl-module.so"
];
description = ''
A list of gtklock modulesto use. Can either be packages, absolute paths, or strings.
'';