Small changes and update inputs

This commit is contained in:
2026-01-28 16:28:14 +01:00
parent 7153e2d3e3
commit bff923359c
8 changed files with 189 additions and 123 deletions

View File

@@ -81,16 +81,20 @@
btop
fastfetch
gimp
calibre
# Just cool
peaclock
cbonsai
pipes
cmatrix
qbittorrent
libreoffice-qt6-fresh
trash-cli
vscode
];
};
}

View File

@@ -64,7 +64,7 @@ in
"$altMod" = "SUPER_ALT";
exec-once = [
"systemctl --user enable --now hyprpaper.service &"
#"systemctl --user enable --now hyprpaper.service &"
];
monitor = config.var.hyprland.monitor;
@@ -159,7 +159,7 @@ in
kb_options = "caps:escape";
follow_mouse = 1;
sensitivity = 0.5;
sensitivity = 0.4;
repeat_delay = 300;
repeat_rate = 50;
numlock_by_default = true;

View File

@@ -1,14 +1,15 @@
# Hyprpaper is used to set the wallpaper on the system
{lib, ...}: {
{ lib, config, ... }:
{
# The wallpaper is set by stylix
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
splash_offset = 2.0;
splash_offset = 2;
};
};
systemd.user.services.hyprpaper.Unit.After =
lib.mkForce "graphical-session.target";
systemd.user.services.hyprpaper.Unit.After = lib.mkForce "graphical-session.target";
}

View File

@@ -4,7 +4,10 @@
services.vicinae = {
enable = true;
autoStart = true;
systemd = {
enable = true;
autoStart = true;
};
};
wayland.windowManager.hyprland.settings.exec-once = [

View File

@@ -0,0 +1,13 @@
{
services.calibre-web = {
enable = true;
listen.ip = "127.0.0.1";
options = {
enableBookUploading = true;
calibreLibrary = "/var/lib/calibre-web/library";
enableKepubify = true;
};
};
services.caddy.virtualHosts."books.jelles.net".extraConfig = "reverse_proxy :8083";
}