mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-23 15:13:12 +01:00
14 lines
398 B
Nix
14 lines
398 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.".base16-themes".source = ../files/base16-themes;
|
||
|
home.file.".face".source = ../files/face.jpg;
|
||
|
home.file.".local/share/fonts" = {
|
||
|
source = ../files/fonts;
|
||
|
recursive = true;
|
||
|
};
|
||
|
}
|