modify structure
This commit is contained in:
parent
498ffad0c4
commit
c85a19aafd
13 changed files with 40 additions and 42 deletions
|
|
@ -1,6 +1,24 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.ghostwriter = {
|
||||
enable = true;
|
||||
font = {
|
||||
family = config.userOptions.fontSans.name;
|
||||
pointSize = config.userOptions.fontSans.size;
|
||||
};
|
||||
};
|
||||
|
||||
programs.kate = {
|
||||
enable = true;
|
||||
editor = {
|
||||
font = {
|
||||
family = config.userOptions.fontMono.name;
|
||||
pointSize = config.userOptions.fontMono.size;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.plasma = {
|
||||
enable = true;
|
||||
overrideConfig = true;
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
programs.ghostwriter = {
|
||||
enable = true;
|
||||
font = {
|
||||
family = config.userOptions.fontSans.name;
|
||||
pointSize = config.userOptions.fontSans.size;
|
||||
};
|
||||
};
|
||||
|
||||
programs.kate = {
|
||||
enable = true;
|
||||
editor = {
|
||||
font = {
|
||||
family = config.userOptions.fontMono.name;
|
||||
pointSize = config.userOptions.fontMono.size;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue