From c31478461e0ae50cc535945a850e1a7862266454 Mon Sep 17 00:00:00 2001 From: aaron Date: Mon, 23 Mar 2026 13:14:20 +0100 Subject: [PATCH] fix(sddm): add theme to system packages so the path will be symlinked --- modules/nixos/sddm.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/nixos/sddm.nix b/modules/nixos/sddm.nix index 8ca7b7f..4666015 100644 --- a/modules/nixos/sddm.nix +++ b/modules/nixos/sddm.nix @@ -17,4 +17,9 @@ sddm-astronaut ]; }; + + # Make the theme available in the system path so sddm can find it + environment.systemPackages = with pkgs; [ + sddm-astronaut + ]; }