mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
35 lines
628 B
Nix
35 lines
628 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.yoda = {
|
|
packages = with pkgs; [
|
|
libsForQt5.ghostwriter # Markdown editor
|
|
];
|
|
};
|
|
|
|
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
|
|
home.file.".config/kde.org/ghostwriter.conf" = {
|
|
text = ''
|
|
[Application]
|
|
locale=en_US
|
|
|
|
[Preview]
|
|
htmlPreviewOpen=false
|
|
lastUsedExporter=cmark-gfm
|
|
lastUsedExporterParams=
|
|
|
|
[Save]
|
|
autoSave=false
|
|
backupFile=false
|
|
|
|
[Style]
|
|
largeHeadings=true
|
|
|
|
[Tabs]
|
|
insertSpacesForTabs=true
|
|
tabWidth=2
|
|
'';
|
|
};
|
|
};
|
|
}
|