mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-24 22:29:33 +01:00
ghostwriter config
This commit is contained in:
parent
0278b5f140
commit
bbe1dcb23d
@ -46,6 +46,7 @@ in
|
|||||||
#../../modules/firefox.nix
|
#../../modules/firefox.nix
|
||||||
#../../modules/thunderbird.nix
|
#../../modules/thunderbird.nix
|
||||||
#../../modules/digikam-rawtherapee.nix
|
#../../modules/digikam-rawtherapee.nix
|
||||||
|
#../../modules/ghostwriter.nix
|
||||||
#../../modules/android.nix
|
#../../modules/android.nix
|
||||||
#../../modules/podman.nix
|
#../../modules/podman.nix
|
||||||
../../modules/docker.nix
|
../../modules/docker.nix
|
||||||
|
@ -45,6 +45,7 @@ in
|
|||||||
../../modules/firefox.nix
|
../../modules/firefox.nix
|
||||||
../../modules/thunderbird.nix
|
../../modules/thunderbird.nix
|
||||||
#../../modules/digikam-rawtherapee.nix
|
#../../modules/digikam-rawtherapee.nix
|
||||||
|
../../modules/ghostwriter.nix
|
||||||
#../../modules/android.nix
|
#../../modules/android.nix
|
||||||
#../../modules/podman.nix
|
#../../modules/podman.nix
|
||||||
#../../modules/docker.nix
|
#../../modules/docker.nix
|
||||||
|
@ -45,6 +45,7 @@ in
|
|||||||
../../modules/firefox.nix
|
../../modules/firefox.nix
|
||||||
../../modules/thunderbird.nix
|
../../modules/thunderbird.nix
|
||||||
../../modules/digikam-rawtherapee.nix
|
../../modules/digikam-rawtherapee.nix
|
||||||
|
../../modules/ghostwriter.nix
|
||||||
../../modules/android.nix
|
../../modules/android.nix
|
||||||
#../../modules/podman.nix
|
#../../modules/podman.nix
|
||||||
../../modules/docker.nix
|
../../modules/docker.nix
|
||||||
|
@ -46,6 +46,7 @@ in
|
|||||||
#../../modules/firefox.nix
|
#../../modules/firefox.nix
|
||||||
#../../modules/thunderbird.nix
|
#../../modules/thunderbird.nix
|
||||||
#../../modules/digikam-rawtherapee.nix
|
#../../modules/digikam-rawtherapee.nix
|
||||||
|
#../../modules/ghostwriter.nix
|
||||||
#../../modules/android.nix
|
#../../modules/android.nix
|
||||||
#../../modules/podman.nix
|
#../../modules/podman.nix
|
||||||
../../modules/docker.nix
|
../../modules/docker.nix
|
||||||
|
34
modules/ghostwriter.nix
Normal file
34
modules/ghostwriter.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ 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
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -57,7 +57,6 @@
|
|||||||
then jetbrains.idea-ultimate
|
then jetbrains.idea-ultimate
|
||||||
else jetbrains.idea-community
|
else jetbrains.idea-community
|
||||||
)
|
)
|
||||||
libsForQt5.ghostwriter # Markdown editor
|
|
||||||
transmission-gtk # BitTorrent client
|
transmission-gtk # BitTorrent client
|
||||||
meld # Diff and merge tool
|
meld # Diff and merge tool
|
||||||
handbrake # Rip DVD and Blu-ray; rotate and export videos
|
handbrake # Rip DVD and Blu-ray; rotate and export videos
|
||||||
|
Loading…
Reference in New Issue
Block a user