feat: add initial config for kachu-pc

This commit is contained in:
2026-07-05 11:46:54 +03:00
parent a1791816d1
commit 6df8f27c0e
5 changed files with 335 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
{pkgs}:
(pkgs.sddm-astronaut.override {
embeddedTheme = "black_hole";
}).overrideAttrs (oldAttrs: {
installPhase =
oldAttrs.installPhase
+ ''
chmod u+w $out/share/sddm/themes/sddm-astronaut-theme/Backgrounds/
'';
})