aboutsummaryrefslogtreecommitdiffstats
path: root/home/conky/default.nix
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2024-05-23 13:56:00 +0300
committerPetri Hienonen <petri.hienonen@gmail.com>2025-11-30 12:29:57 +0200
commit08297376a85a1719518507e54fca9de954d2376a (patch)
tree3b9c58304b40248533bbb2bb5b7bad2da9da1ff0 /home/conky/default.nix
parent75c2af4aedd2ac5c2cfc74b346625fa4b265541d (diff)
downloadnixos-08297376a85a1719518507e54fca9de954d2376a.tar.zst
Agenix configuration
Diffstat (limited to 'home/conky/default.nix')
-rw-r--r--home/conky/default.nix76
1 files changed, 76 insertions, 0 deletions
diff --git a/home/conky/default.nix b/home/conky/default.nix
new file mode 100644
index 0000000..1fc628e
--- /dev/null
+++ b/home/conky/default.nix
@@ -0,0 +1,76 @@
+{
+ config,
+ pkgs-unstable,
+ lib,
+ ...
+}:
+let
+ luaMain = builtins.readFile ./main.lua;
+in
+{
+ services.conky = {
+ enable = true;
+ package =
+ (pkgs-unstable.conky.override {
+ curlSupport = true;
+ journalSupport = true;
+ luaCairoSupport = true;
+ luaSupport = true;
+ pulseSupport = true;
+ waylandSupport = true;
+ x11Support = true;
+ }).overrideAttrs
+ (old: {
+ buildInputs = old.buildInputs ++ [
+ pkgs-unstable.cairo
+ pkgs-unstable.wayland
+ pkgs-unstable.libGL
+ pkgs-unstable.expat
+ pkgs-unstable.xorg.libXfixes
+ ];
+ });
+
+ # https://conky.cc/config_settings
+ extraConfig = ''
+ conky.config = {
+ -- wayland
+ out_to_wayland = false,
+ out_to_x = true,
+ own_window_class = 'conky',
+ own_window_type ='override',
+ own_window = true,
+ own_window_transparent = true,
+ own_window_hints = 'undecorated,sticky,below,skip_taskbar,skip_pager',
+ double_buffer = true,
+
+ alignment = "top_right",
+ gap_x = 60,
+ gap_y = 60,
+ minimum_width = 400,
+ minimum_height = 200,
+ maximum_width = 400,
+
+ -- Colors and fonts
+ draw_shades = false,
+ draw_outline = false,
+ draw_borders = false,
+ default_color = "white",
+ default_shade_color = "black",
+ default_outline_color = "black",
+ color1 = "lightblue",
+
+ -- Text
+ use_xft = yes,
+ font = "Liberation Mono:size=10",
+ uppercase = false,
+
+ -- Lua configuration
+ lua_load = '${config.home.homeDirectory}/.config/conky/main.lua',
+ lua_draw_hook_post = "conky_main"
+ };
+
+ conky.text = [[ ]]
+ '';
+ };
+ xdg.configFile."conky/main.lua".text = luaMain;
+}