From 94cf550ea4b0f60accb26c4d8a1f44a610c6fed7 Mon Sep 17 00:00:00 2001 From: Philip Peterson Date: Fri, 8 May 2026 21:27:42 -0800 Subject: [PATCH] Fix mkDefault issue --- nixos/system/home/shared.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nixos/system/home/shared.nix b/nixos/system/home/shared.nix index 061585b..d4d46bd 100644 --- a/nixos/system/home/shared.nix +++ b/nixos/system/home/shared.nix @@ -48,10 +48,7 @@ in { sessionVariables.EDITOR = "vim"; sessionVariables.SHELL = "/etc/profiles/per-user/${username}/bin/zsh"; - packages = lib.mkDefault ( - stable-packages - ++ unstable-packages - ); + packages = stable-packages ++ unstable-packages; file.".ssh/known_hosts" = { text = joinedString;