OOKNET                             [ /  search the index  ]  
──────────────────────────────────────────────────────────────────────────────────────
══════════════════════════════════════════════════════════════════════════════════════
OOKNET   [ /  search  ]  
────────────────────────────────────────────────
════════════════════════════════════════════════
 
HASH      70b777ad77b7
DATE      2026-07-11
SUBJECT   home: adapt to home-manager option renames
FILES     6 CHANGED
HASH      70b777ad77b7
DATE      2026-07-11
SUBJECT   home: adapt to home-manager option
          renames
FILES     6 CHANGED
 

diff --git a/modules/home/common/browser/firefox/default.nix b/modules/home/common
/browser/firefox/default.nix
index b30e6ea..592b7be 100644
--- a/modules/home/common/browser/firefox/default.nix
+++ b/modules/home/common/browser/firefox/default.nix
@@ -35,6 +35,8 @@ in {
     (mkIf (cfg.enable || default.browser == "firefox") {
       programs.firefox = {
         enable = true;
+        # keep legacy path; new HM default moved to $XDG_CONFIG_HOME/mozilla/fire
fox
+        configPath = ".mozilla/firefox";
         package =
           if isDarwin
           then null

diff --git a/modules/home/common/browser/fir
efox/default.nix b/modules/home/common/brows
er/firefox/default.nix
index b30e6ea..592b7be 100644
--- a/modules/home/common/browser/firefox/de
fault.nix
+++ b/modules/home/common/browser/firefox/de
fault.nix
@@ -35,6 +35,8 @@ in {
     (mkIf (cfg.enable || default.browser ==
 "firefox") {
       programs.firefox = {
         enable = true;
+        # keep legacy path; new HM default 
moved to $XDG_CONFIG_HOME/mozilla/firefox
+        configPath = ".mozilla/firefox";
         package =
           if isDarwin
           then null
 

diff --git a/modules/home/console/shell/fish/functions/develop.nix b/modules/home/
console/shell/fish/functions/develop.nix
index b3f6c56..cb4ca87 100644
--- a/modules/home/console/shell/fish/functions/develop.nix
+++ b/modules/home/console/shell/fish/functions/develop.nix
@@ -4,7 +4,7 @@
   ...
 }: let
   # get devshell names from flake
-  devShellNames = builtins.concatStringsSep " " (builtins.attrNames self.devShell
s.${pkgs.system});
+  devShellNames = builtins.concatStringsSep " " (builtins.attrNames self.devShell
s.${pkgs.stdenv.hostPlatform.system});
 in {
   programs.fish = {
     # add devshells completions to init script

diff --git a/modules/home/console/shell/fish
/functions/develop.nix b/modules/home/consol
e/shell/fish/functions/develop.nix
index b3f6c56..cb4ca87 100644
--- a/modules/home/console/shell/fish/functi
ons/develop.nix
+++ b/modules/home/console/shell/fish/functi
ons/develop.nix
@@ -4,7 +4,7 @@
   ...
 }: let
   # get devshell names from flake
-  devShellNames = builtins.concatStringsSep
 " " (builtins.attrNames self.devShells.${pk
gs.system});
+  devShellNames = builtins.concatStringsSep
 " " (builtins.attrNames self.devShells.${pk
gs.stdenv.hostPlatform.system});
 in {
   programs.fish = {
     # add devshells completions to init scr
ipt
 

diff --git a/modules/home/console/tools/fzf.nix b/modules/home/console/tools/fzf.n
ix
index 4cc61a5..c5e1377 100644
--- a/modules/home/console/tools/fzf.nix
+++ b/modules/home/console/tools/fzf.nix
@@ -12,14 +12,16 @@ in {
       enable = true;
       enableFishIntegration = mkIf (admin.shell == "fish") true;
       defaultCommand = "rg --files --hidden";
-      changeDirWidgetOptions = [
+      changeDirWidget.options = [
         "--preview 'eza --icons -L 3 -T --color always {} | head -200'"
         "--exact"
       ];
-      fileWidgetCommand = "rg --files";
-      fileWidgetOptions = [
-        "--preview 'bat --color=always {}'"
-      ];
+      fileWidget = {
+        command = "rg --files";
+        options = [
+          "--preview 'bat --color=always {}'"
+        ];
+      };
     };
   };
 }

diff --git a/modules/home/console/tools/fzf.
nix b/modules/home/console/tools/fzf.nix
index 4cc61a5..c5e1377 100644
--- a/modules/home/console/tools/fzf.nix
+++ b/modules/home/console/tools/fzf.nix
@@ -12,14 +12,16 @@ in {
       enable = true;
       enableFishIntegration = mkIf (admin.s
hell == "fish") true;
       defaultCommand = "rg --files --hidden
";
-      changeDirWidgetOptions = [
+      changeDirWidget.options = [
         "--preview 'eza --icons -L 3 -T --c
olor always {} | head -200'"
         "--exact"
       ];
-      fileWidgetCommand = "rg --files";
-      fileWidgetOptions = [
-        "--preview 'bat --color=always {}'"
-      ];
+      fileWidget = {
+        command = "rg --files";
+        options = [
+          "--preview 'bat --color=always {}
'"
+        ];
+      };
     };
   };
 }
 

diff --git a/modules/home/console/tools/ssh.nix b/modules/home/console/tools/ssh.n
ix
index 1f572d8..5fb853b 100644
--- a/modules/home/console/tools/ssh.nix
+++ b/modules/home/console/tools/ssh.nix
@@ -10,21 +10,21 @@ in {
     programs.ssh = {
       enable = true;
       enableDefaultConfig = false;
-      matchBlocks = {
+      settings = {
         "*" = {
-          compression = true;
-          hashKnownHosts = true;
+          Compression = true;
+          HashKnownHosts = true;
         };
         "github.com" = {
-          user = "git";
-          hostname = "github.com";
-          identityFile = "${osConfig.age.secrets.github_key.path}";
+          User = "git";
+          HostName = "github.com";
+          IdentityFile = "${osConfig.age.secrets.github_key.path}";
         };
         "git.ooknet.org" = {
-          user = "forgejo";
-          port = 2222;
-          hostname = "git.ooknet.org";
-          identityFile = "${osConfig.age.secrets.ooknet_org.path}";
+          User = "forgejo";
+          Port = 2222;
+          HostName = "git.ooknet.org";
+          IdentityFile = "${osConfig.age.secrets.ooknet_org.path}";
         };
       };
     };

diff --git a/modules/home/console/tools/ssh.
nix b/modules/home/console/tools/ssh.nix
index 1f572d8..5fb853b 100644
--- a/modules/home/console/tools/ssh.nix
+++ b/modules/home/console/tools/ssh.nix
@@ -10,21 +10,21 @@ in {
     programs.ssh = {
       enable = true;
       enableDefaultConfig = false;
-      matchBlocks = {
+      settings = {
         "*" = {
-          compression = true;
-          hashKnownHosts = true;
+          Compression = true;
+          HashKnownHosts = true;
         };
         "github.com" = {
-          user = "git";
-          hostname = "github.com";
-          identityFile = "${osConfig.age.se
crets.github_key.path}";
+          User = "git";
+          HostName = "github.com";
+          IdentityFile = "${osConfig.age.se
crets.github_key.path}";
         };
         "git.ooknet.org" = {
-          user = "forgejo";
-          port = 2222;
-          hostname = "git.ooknet.org";
-          identityFile = "${osConfig.age.se
crets.ooknet_org.path}";
+          User = "forgejo";
+          Port = 2222;
+          HostName = "git.ooknet.org";
+          IdentityFile = "${osConfig.age.se
crets.ooknet_org.path}";
         };
       };
     };
 

diff --git a/modules/home/nixos/appearance/cursor.nix b/modules/home/nixos/appeara
nce/cursor.nix
index d5cd3d6..ee85f28 100644
--- a/modules/home/nixos/appearance/cursor.nix
+++ b/modules/home/nixos/appearance/cursor.nix
@@ -1,5 +1,6 @@
 {osConfig, ...}: {
   home.pointerCursor = {
+    enable = true;
     inherit (osConfig.ooknet.appearance.cursor) package name size;
     gtk.enable = true;
     x11.enable = true;

diff --git a/modules/home/nixos/appearance/c
ursor.nix b/modules/home/nixos/appearance/cu
rsor.nix
index d5cd3d6..ee85f28 100644
--- a/modules/home/nixos/appearance/cursor.n
ix
+++ b/modules/home/nixos/appearance/cursor.n
ix
@@ -1,5 +1,6 @@
 {osConfig, ...}: {
   home.pointerCursor = {
+    enable = true;
     inherit (osConfig.ooknet.appearance.cur
sor) package name size;
     gtk.enable = true;
     x11.enable = true;
 

diff --git a/modules/home/nixos/appearance/qt/default.nix b/modules/home/nixos/app
earance/qt/default.nix
index 2766def..7145753 100644
--- a/modules/home/nixos/appearance/qt/default.nix
+++ b/modules/home/nixos/appearance/qt/default.nix
@@ -405,7 +405,7 @@ in {
     };
   };
   home.packages = with pkgs; [
-    libsForQt5.qt5.qtwayland
+    qt5.qtwayland
     kdePackages.qtwayland
     kdePackages.qqc2-desktop-style
     kdePackages.qttools

diff --git a/modules/home/nixos/appearance/q
t/default.nix b/modules/home/nixos/appearanc
e/qt/default.nix
index 2766def..7145753 100644
--- a/modules/home/nixos/appearance/qt/defau
lt.nix
+++ b/modules/home/nixos/appearance/qt/defau
lt.nix
@@ -405,7 +405,7 @@ in {
     };
   };
   home.packages = with pkgs; [
-    libsForQt5.qt5.qtwayland
+    qt5.qtwayland
     kdePackages.qtwayland
     kdePackages.qqc2-desktop-style
     kdePackages.qttools
 
[ BACK TO LOG ]
──────────────────────────────────────────────────────────────────────────────────────
OOKNET
────────────────────────────────────────────────
OOKNET