From b85dfdd81cddbcd13f7667f41da11fd84b7a16dc Mon Sep 17 00:00:00 2001 From: "home-manager-ci[bot]" <214323736+home-manager-ci[bot]@users.noreply.github.com> Date: Wed, 4 Feb 2026 05:02:21 +0000 Subject: [PATCH 1/3] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/d351d0653aeb7877273920cd3e823994e7579b0b?narHash=sha256-r4GVX%2BFToWVE2My8VVZH4V0pTIpnu2ZE8/Z4uxGEMBE%3D' (2026-01-07) → 'github:NixOS/nixpkgs/e576e3c9cf9bad747afcddd9e34f51d18c855b4e?narHash=sha256-tlFqNG/uzz2%2B%2BaAmn4v8J0vAkV3z7XngeIIB3rM3650%3D' (2026-02-03) --- flake.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index 4c9c3013..8b40c7b4 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1767799921, - "narHash": "sha256-r4GVX+FToWVE2My8VVZH4V0pTIpnu2ZE8/Z4uxGEMBE=", + "lastModified": 1770136044, + "narHash": "sha256-tlFqNG/uzz2++aAmn4v8J0vAkV3z7XngeIIB3rM3650=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d351d0653aeb7877273920cd3e823994e7579b0b", + "rev": "e576e3c9cf9bad747afcddd9e34f51d18c855b4e", "type": "github" }, "original": { From 451f6638e5fbfeae8d4e67d9a31c1ca9d8270a3a Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Wed, 4 Feb 2026 20:54:23 -0600 Subject: [PATCH 2/3] darwinScrublist: add jrnl Signed-off-by: Austin Horstman --- tests/darwinScrublist.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/darwinScrublist.nix b/tests/darwinScrublist.nix index 128609ae..ba8328e4 100644 --- a/tests/darwinScrublist.nix +++ b/tests/darwinScrublist.nix @@ -78,6 +78,7 @@ let "jankyborders" "joplin-desktop" "jqp" + "jrnl" "jujutsu" "k9s" "kakoune" From 0d782ee42c86b196acff08acfbf41bb7d13eed5b Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Wed, 4 Feb 2026 20:56:16 -0600 Subject: [PATCH 3/3] treewide: nix fmt Signed-off-by: Austin Horstman --- modules/files.nix | 2 +- modules/programs/firefox/mkFirefoxModule.nix | 2 +- modules/programs/oh-my-posh.nix | 4 ++-- modules/programs/vdirsyncer/default.nix | 2 +- modules/services/window-managers/hyprland.nix | 3 +-- tests/modules/services/mako/renamed-options.nix | 4 ++-- 6 files changed, 8 insertions(+), 9 deletions(-) diff --git a/modules/files.nix b/modules/files.nix index db63fced..bc96fbe8 100644 --- a/modules/files.nix +++ b/modules/files.nix @@ -87,7 +87,7 @@ in pathStr = toString path; name = lib.hm.strings.storeFileName (baseNameOf pathStr); in - pkgs.runCommandLocal name { } ''ln -s ${lib.escapeShellArg pathStr} $out''; + pkgs.runCommandLocal name { } "ln -s ${lib.escapeShellArg pathStr} $out"; # This verifies that the links we are about to create will not # overwrite an existing file. diff --git a/modules/programs/firefox/mkFirefoxModule.nix b/modules/programs/firefox/mkFirefoxModule.nix index f7ebb6ab..5cf049c2 100644 --- a/modules/programs/firefox/mkFirefoxModule.nix +++ b/modules/programs/firefox/mkFirefoxModule.nix @@ -278,7 +278,7 @@ in type = types.nullOr types.str; default = if platforms.darwin ? "defaultsId" then platforms.darwin.defaultsId else null; example = if default != null then default else "com.developer.app"; - description = ''The id for the darwin defaults in order to set policies''; + description = "The id for the darwin defaults in order to set policies"; }; darwinAppName = mkOption { diff --git a/modules/programs/oh-my-posh.nix b/modules/programs/oh-my-posh.nix index 162be4e1..3501d150 100644 --- a/modules/programs/oh-my-posh.nix +++ b/modules/programs/oh-my-posh.nix @@ -108,11 +108,11 @@ in if lib.versionAtLeast (lib.versions.major cfg.package.version) "26" then "${lib.getExe cfg.package} init nu ${configArgument}" else - ''source ${ + "source ${ pkgs.runCommand "oh-my-posh-nushell-config.nu" { } '' ${lib.getExe cfg.package} init nu ${configArgument} --print >> "$out" '' - }'' + }" } ''; }; diff --git a/modules/programs/vdirsyncer/default.nix b/modules/programs/vdirsyncer/default.nix index a81a6cc2..10ef3229 100644 --- a/modules/programs/vdirsyncer/default.nix +++ b/modules/programs/vdirsyncer/default.nix @@ -102,7 +102,7 @@ let else if (n == "itemTypes") then "item_types = ${listString (map wrap v)}" else if (n == "useVcard4") then - ''use_vcard_4 = ${v}'' + "use_vcard_4 = ${v}" else if (n == "userName") then ''username = "${v}"'' else if (n == "userNameCommand") then diff --git a/modules/services/window-managers/hyprland.nix b/modules/services/window-managers/hyprland.nix index 1a1caee4..2a03d259 100644 --- a/modules/services/window-managers/hyprland.nix +++ b/modules/services/window-managers/hyprland.nix @@ -342,8 +342,7 @@ in warning = "You have enabled hyprland.systemd.enable or listed plugins in hyprland.plugins but do not have any configuration in hyprland.settings or hyprland.extraConfig. This is almost certainly a mistake."; filterNonBinds = - attrs: - builtins.filter (n: builtins.match ''bind[[:lower:]]*'' n == null) (builtins.attrNames attrs); + attrs: builtins.filter (n: builtins.match "bind[[:lower:]]*" n == null) (builtins.attrNames attrs); # attrset of { = ; } for all submaps submapWarningsAttrset = builtins.mapAttrs ( diff --git a/tests/modules/services/mako/renamed-options.nix b/tests/modules/services/mako/renamed-options.nix index faf05cfe..2a102b06 100644 --- a/tests/modules/services/mako/renamed-options.nix +++ b/tests/modules/services/mako/renamed-options.nix @@ -64,9 +64,9 @@ in map ( option: - ''The option `services.mako.${option}' defined in ${ + "The option `services.mako.${option}' defined in ${ lib.showFiles options.services.mako.${option}.files - } has been renamed to `services.mako.settings.${lib.hm.strings.toKebabCase option}'.'' + } has been renamed to `services.mako.settings.${lib.hm.strings.toKebabCase option}'." ) renamedOptions; nmt.script = ''