zaneyos/config/files.nix

22 lines
599 B
Nix
Raw Normal View History

2024-01-15 18:33:36 +01:00
{ pkgs, config, ... }:
{
# Place Files Inside Home Directory
2024-01-15 18:40:26 +01:00
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.".config/pipewire/pipewire.conf".source = ./pipewire/pipewire.conf;
2024-01-15 18:33:36 +01:00
home.file."Pictures/Wallpapers" = {
2024-01-15 18:40:26 +01:00
source = ./files/media/Wallpapers;
2024-01-15 18:33:36 +01:00
recursive = true;
};
home.file.".local/share/fonts" = {
2024-01-15 18:40:26 +01:00
source = ./files/fonts;
2024-01-15 18:33:36 +01:00
recursive = true;
};
home.file.".config/swaync" = {
2024-01-15 18:40:26 +01:00
source = ./swaync;
2024-01-15 18:33:36 +01:00
recursive = true;
};
2024-01-15 18:34:37 +01:00
}