14 lines
266 B
Nix
14 lines
266 B
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
dorion
|
|
];
|
|
|
|
home.file = {
|
|
".config/dorion/config.json" = {
|
|
source = ./dorion-config.json;
|
|
};
|
|
".config/dorion/themes/rose-pine.theme.css" = {
|
|
source = ./rose-pine.theme.css;
|
|
};
|
|
};
|
|
}
|