treewide: make the libs actual libs

This commit is contained in:
EdenQwQ 2025-03-06 13:06:52 +08:00
parent 225f2c1b32
commit 3e6796b3ea
14 changed files with 230 additions and 197 deletions

View file

@ -14,19 +14,12 @@ in
];
programs.fastfetch.enable = true;
xdg.configFile."fastfetch/config.jsonc".source = ./fastfetch.jsonc;
home.file."Pictures/face.jpg".source = import ../../../lib/wallpaper/goNord.nix {
inherit
pkgs
config
;
wallpaper = {
name = "face";
path = pkgs.fetchurl {
name = "face.jpg";
url = "https://avatars.githubusercontent.com/EdenQwQ";
sha256 = "1hxl459l3ni5yaj72dngy9wx9rd1yvb85v31nibv5mih4mp1p6cp";
};
home.file."Pictures/face.jpg".source = config.lib.wallpapers.goNord {
name = "face";
path = pkgs.fetchurl {
name = "face.jpg";
url = "https://avatars.githubusercontent.com/EdenQwQ";
sha256 = "1hxl459l3ni5yaj72dngy9wx9rd1yvb85v31nibv5mih4mp1p6cp";
};
};
}