2024-01-18 05:33:57 +01:00
|
|
|
{ pkgs, config, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
# Place Files Inside Home Directory
|
2024-01-18 05:57:28 +01:00
|
|
|
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;
|
2024-01-23 06:46:45 +01:00
|
|
|
home.file.".face".source = ./files/face.jpg; # For GDM
|
|
|
|
home.file.".face.icon".source = ./files/face.jpg; # For SDDM
|
2024-01-18 05:57:28 +01:00
|
|
|
home.file.".config/rofi/rofi.jpg".source = ./files/rofi.jpg;
|
2024-01-23 05:13:11 +01:00
|
|
|
home.file.".config/starship.toml".source = ./files/starship.toml;
|
2024-01-18 05:33:57 +01:00
|
|
|
home.file.".local/share/fonts" = {
|
2024-01-18 05:57:28 +01:00
|
|
|
source = ./files/fonts;
|
2024-01-18 05:33:57 +01:00
|
|
|
recursive = true;
|
|
|
|
};
|
|
|
|
}
|