zaneyos/config/files.nix
2024-01-15 12:32:57 -06:00

17 lines
436 B
Nix

{ pkgs, config, ... }:
{
# Place Files Inside Home Directory
home.file.".config/zaney-stinger.mov".source = ./files/media/zaney-stinger.mov;
home.file.".emoji".source = ./files/emoji;
home.file.".face".source = ./files/face.jpg;
home.file."Pictures/Wallpapers" = {
source = ./files/media/Wallpapers;
recursive = true;
};
home.file.".local/share/fonts" = {
source = ./files/fonts;
recursive = true;
};
}