Move fontconfig out of home-manager because it messes with plasma, add signal to defaults

This commit is contained in:
Evie Litherland-Smith 2023-06-14 09:57:15 +01:00
parent 6353d21498
commit fd1ae6eb36
3 changed files with 4 additions and 3 deletions

View file

@ -39,4 +39,5 @@ in {
fish.enable = true; fish.enable = true;
zsh.enable = true; zsh.enable = true;
}; };
fonts.fontconfig.enable = true;
} }

View file

@ -1,4 +1,4 @@
{...}: { {pkgs, ...}: {
imports = [./env ./gui ./tui]; imports = [./env ./gui ./tui];
fonts.fontconfig.enable = true; home.packages = with pkgs; [signal-desktop];
} }

View file

@ -1,4 +1,4 @@
{pkgs, ...}: { {pkgs, ...}: {
imports = [./default.nix ./git/personal.nix ./ssh/personal.nix]; imports = [./default.nix ./git/personal.nix ./ssh/personal.nix];
home.packages = with pkgs; [signal-desktop discord element-desktop]; home.packages = with pkgs; [discord element-desktop];
} }