mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-01-14 16:38:13 +01:00
22 lines
599 B
Nix
22 lines
599 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.".face".source = ./files/face.jpg;
|
|
home.file.".config/pipewire/pipewire.conf".source = ./pipewire/pipewire.conf;
|
|
home.file."Pictures/Wallpapers" = {
|
|
source = ./files/media/Wallpapers;
|
|
recursive = true;
|
|
};
|
|
home.file.".local/share/fonts" = {
|
|
source = ./files/fonts;
|
|
recursive = true;
|
|
};
|
|
home.file.".config/swaync" = {
|
|
source = ./swaync;
|
|
recursive = true;
|
|
};
|
|
}
|