modify structure
This commit is contained in:
parent
86f63580fc
commit
dc8d6c3db3
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -9,6 +9,10 @@ let
|
|||
};
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./niri.nix
|
||||
./noctalia.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
xdg-desktop-portal
|
||||
brightnessctl
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue