mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-22 14:43:08 +01:00
22 lines
760 B
Nix
22 lines
760 B
Nix
{ 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;
|
|
home.file.".config/swaylock-bg.jpg".source = ./files/media/swaylock-bg.jpg;
|
|
home.file.".config/ascii-neofetch".source = ./files/ascii-neofetch;
|
|
home.file.".local/share/fonts" = {
|
|
source = ./files/fonts;
|
|
recursive = true;
|
|
};
|
|
home.file.".config/obs-studio" = {
|
|
source = ./files/obs-studio;
|
|
recursive = true;
|
|
};
|
|
}
|