zaneyos/config/home/files.nix

21 lines
682 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
{
# Place Files Inside Home Directory
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;
2024-02-18 02:17:13 +01:00
home.file.".config/ascii-neofetch".source = ./files/ascii-neofetch;
home.file.".local/share/fonts" = {
source = ./files/fonts;
recursive = true;
};
2024-02-11 08:36:15 +01:00
home.file.".config/obs-studio" = {
source = ./files/obs-studio;
recursive = true;
};
}