feat: replace waybar/walker/swaylock/swaybg with noctalia shell

This commit is contained in:
2026-08-14 00:17:36 +07:00
parent 96369087b5
commit 68f37753f5
14 changed files with 342 additions and 775 deletions
+23
View File
@@ -0,0 +1,23 @@
{ lib, ... }:
{
home.username = "duynguyen";
home.homeDirectory = "/home/duynguyen";
home.stateVersion = "26.05";
imports = [
../modules/niri
../modules/kitty
../modules/cli
../modules/applications
];
# Zen Browser scroll speed — written to all profiles so it survives profile ID changes
home.activation.zenBrowserUserJs = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
for profile in "$HOME/.config/zen/"*.*/; do
[[ -d "$profile" ]] || continue
echo 'user_pref("mousewheel.default.delta_multiplier_y", 50);' > "$profile/user.js"
done
'';
programs.home-manager.enable = true;
}