started new config

This commit is contained in:
2025-12-28 14:48:30 +09:00
commit a743f2c943
17 changed files with 661 additions and 0 deletions

7
assets/README.md Normal file
View File

@@ -0,0 +1,7 @@
# Static Assets for ricing
All of stuff(Wallpapers, etc.) packaged in single nix deriv.
## Sources
* ``

8
assets/default.nix Normal file
View File

@@ -0,0 +1,8 @@
stdenv.mkDerivation {
name = "ricing-assets";
src = ./.;
installPhase = ''
mkdir -p $out/share/wallpapers
cp -r wallpapers/ $out/share/wallpapers
'';
}