26 lines
466 B
Nix
26 lines
466 B
Nix
|
{
|
||
|
lib,
|
||
|
pkgs,
|
||
|
inputs,
|
||
|
...
|
||
|
}: {
|
||
|
home.file = {
|
||
|
"profile" = {
|
||
|
source = ./Catppuccin.profile;
|
||
|
target = ".local/share/konsole/Catppuccin.profile";
|
||
|
};
|
||
|
};
|
||
|
home.file = {
|
||
|
"colorscheme" = {
|
||
|
source = ./Catppuccin-Macchiato.colorscheme;
|
||
|
target = ".local/share/konsole/Catppuccin-Macchiato.colorscheme";
|
||
|
};
|
||
|
};
|
||
|
home.file = {
|
||
|
"konsolerc" = {
|
||
|
source = ./konsolerc;
|
||
|
target = ".config/konsolerc";
|
||
|
};
|
||
|
};
|
||
|
}
|