feat(dank): enable DMS/niri session on mibook, pin HM to release-26.05, drop redundant keybinds

- Pin home-manager input to release-26.05 to match nixpkgs (was resolving
  to HM master / 26.11, causing a Home Manager version mismatch warning).
- Drop niri.enableKeybinds = true from the dank HM config; keybinds are
  already provided by the imported DMS niri homeModule (includes), and using
  both together triggered the "enableKeybinds and includes.enable" warning.
- Enable my.profiles.dank on mibook (machines/mibook/environments.nix).
- Rebuild confirmed exit 0 with both target warnings resolved.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_018Sv2QAunLcLo3tS1YsfLgN
This commit is contained in:
2026-07-24 14:09:59 +02:00
parent 2520010340
commit 6c95ed3ebb
4 changed files with 7 additions and 6 deletions
Generated
+4 -3
View File
@@ -138,15 +138,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1784877405, "lastModified": 1784350909,
"narHash": "sha256-W649GocILahx7Vb/JMx834217+OLKBrq014VmC/8+NM=", "narHash": "sha256-ZWyzLbS1yKUTeFJLmdVuWNnHttL333/ldJbEE+KzCrM=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "32de400b6ac9f43042bca706f4a64f6ad08117e8", "rev": "4ce190229c73d44536caa7072f6308fb2d8feeb3",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-26.05",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }
+1 -1
View File
@@ -12,7 +12,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager/release-26.05";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
niri.url = "github:sodiboo/niri-flake"; niri.url = "github:sodiboo/niri-flake";
+1
View File
@@ -6,6 +6,7 @@ in
{ {
my.profiles = { my.profiles = {
kde-desktop.enable = true; kde-desktop.enable = true;
dank.enable = true;
zsh.enable = true; zsh.enable = true;
apps = { apps = {
desktop_apps = true; desktop_apps = true;
+1 -2
View File
@@ -27,7 +27,7 @@ in
quickshell.package = pkgs.unstable.quickshell; 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 = { home-manager.users.finn = {
imports = [ imports = [
inputs.niri.homeModules.niri inputs.niri.homeModules.niri
@@ -39,7 +39,6 @@ in
enable = true; enable = true;
systemd.enable = true; systemd.enable = true;
quickshell.package = pkgs.unstable.quickshell; quickshell.package = pkgs.unstable.quickshell;
niri.enableKeybinds = true;
niri.enableSpawn = true; niri.enableSpawn = true;
}; };