add desktop platform
This commit is contained in:
parent
a598918c63
commit
f07257ab6d
28 changed files with 1604 additions and 0 deletions
18
home/platforms/fabian@posixlycorrect/gui/fonts.nix
Normal file
18
home/platforms/fabian@posixlycorrect/gui/fonts.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.local.gui.fonts;
|
||||
in {
|
||||
options.local.gui.fonts.enable = mkEnableOption "Font management";
|
||||
config = mkIf cfg.enable {
|
||||
fonts.fontconfig.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
jetbrains-mono
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue