NixOS-Config/modules/home/files/default.nix

20 lines
396 B
Nix
Raw Permalink Normal View History

{ pkgs, ... }: {
2024-08-24 22:16:51 -04:00
home.file = {
".face" = {
source = ./assets/pfp.png;
2024-08-24 22:16:51 -04:00
};
".assets/wallpapers" = {
source = ./assets/wallpapers;
};
".assets/lockscreen" = {
source = ./assets/lockscreen;
2024-08-24 22:16:51 -04:00
};
".icons/default" = {
source = "${pkgs.simp1e-cursors}/share/icons/Simp1e-Dark";
};
".alsoftrc" = {
text = ''drivers=pulse'';
};
2024-08-24 22:16:51 -04:00
};
}