zaneyos/config/home/files.nix
2024-01-22 23:46:45 -06:00

17 lines
597 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.".base16-themes".source = ./files/base16-themes;
home.file.".face".source = ./files/face.jpg; # For GDM
home.file.".face.icon".source = ./files/face.jpg; # For SDDM
home.file.".config/rofi/rofi.jpg".source = ./files/rofi.jpg;
home.file.".config/starship.toml".source = ./files/starship.toml;
home.file.".local/share/fonts" = {
source = ./files/fonts;
recursive = true;
};
}