From 87e5204d85371860ad15756971afab4b3c14e723 Mon Sep 17 00:00:00 2001 From: "Finn@MiBook" Date: Fri, 24 Jul 2026 14:10:45 +0200 Subject: [PATCH] docs(plan): pin home-manager to release-26.05 and drop redundant niri keybinds Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_018Sv2QAunLcLo3tS1YsfLgN --- docs/superpowers/plans/2026-07-24-dank-material-shell.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/superpowers/plans/2026-07-24-dank-material-shell.md b/docs/superpowers/plans/2026-07-24-dank-material-shell.md index 8798ca3..7cc25b5 100644 --- a/docs/superpowers/plans/2026-07-24-dank-material-shell.md +++ b/docs/superpowers/plans/2026-07-24-dank-material-shell.md @@ -35,7 +35,7 @@ In `flake.nix`, inside the `inputs = { ... }` block, after the `nixos-generators ```nix home-manager = { - url = "github:nix-community/home-manager"; + url = "github:nix-community/home-manager/release-26.05"; inputs.nixpkgs.follows = "nixpkgs"; }; niri.url = "github:sodiboo/niri-flake"; @@ -181,7 +181,7 @@ in quickshell.package = pkgs.unstable.quickshell; }; - # Home side: DMS shell + niri keybinds/spawn for finn. + # Home side: DMS shell + niri spawn for finn (keybinds come via includes). home-manager.users.finn = { imports = [ inputs.niri.homeModules.niri @@ -193,7 +193,9 @@ in enable = true; systemd.enable = true; quickshell.package = pkgs.unstable.quickshell; - niri.enableKeybinds = true; + # niri.enableKeybinds intentionally omitted: DMS's niri `includes.enable` + # (default true) already brings in the generated binds.kdl plus theming; + # setting enableKeybinds too triggers an upstream "not recommended" warning. niri.enableSpawn = true; };