2024-08-24 22:16:51 -04:00
|
|
|
{pkgs, ...}: {
|
|
|
|
home.file = {
|
|
|
|
".face" = {
|
2024-10-07 11:42:34 -04:00
|
|
|
source = ./assets/user-icon.png;
|
2024-08-24 22:16:51 -04:00
|
|
|
};
|
|
|
|
".wallpapers" = {
|
2024-10-07 11:42:34 -04:00
|
|
|
source = ./assets/wallpapers;
|
2024-08-24 22:16:51 -04:00
|
|
|
recursive = true;
|
|
|
|
};
|
|
|
|
".icons/default" = {
|
|
|
|
source = "${pkgs.simp1e-cursors}/share/icons/Simp1e-Dark";
|
|
|
|
};
|
2024-10-07 11:42:34 -04:00
|
|
|
".alsoftrc" = {
|
|
|
|
text = ''drivers=pulse'';
|
|
|
|
};
|
2024-08-24 22:16:51 -04:00
|
|
|
};
|
|
|
|
}
|