vanadium: 🏳️‍⚧️

This commit is contained in:
Primrose 2025-05-27 00:31:59 +02:00
parent d5a7a9007b
commit 9894170baa
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
3 changed files with 8 additions and 0 deletions

View file

@ -43,6 +43,7 @@ in
../overlays/nur.nix
../overlays/wired-notify.nix
../overlays/nix-tree.nix
../overlays/wallpapers.nix
../overlays/packages.nix
./vanadium/overlay.nix

View file

@ -30,6 +30,7 @@
home.file = {
".xscreensaver".source = "${./xscreensaver/.xscreensaver}";
".wallpaper".source = "${pkgs.wallpapers.estradiol}/main.svg";
};
xdg.configFile = {
"xmonad".source = "${./xmonad}";

View file

@ -0,0 +1,6 @@
let
sources = import ../sources.nix;
in
_: _: {
wallpapers = import sources.wallpapers {};
}