13 lines
230 B
Nix
13 lines
230 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
# 基于 https://github.com/endeavouros-team/endeavouros-i3wm-setup
|
|
home.file.".config/rofi" = {
|
|
source = ./configs;
|
|
# copy the scripts directory recursively
|
|
recursive = true;
|
|
};
|
|
}
|