System/Darwinix: Add fonts

This commit is contained in:
2026-03-21 15:00:32 +01:00
parent 895539f078
commit ab6a6f872b
4 changed files with 17 additions and 3 deletions
+11 -1
View File
@@ -152,7 +152,17 @@
config.allowUnfree = true;
config.allowUnfreePredicate = pkg: true;
overlays = [];
overlays = let
pkgs-stable = import inputs.nixpkgs-stable {
system = darwinSystem;
config.allowUnfree = true;
config.allowUnfreePredicate = pkg: true;
};
in [
# All my own overlays (derivations + modifications)
(import ./overlays {inherit inputs nixpkgs pkgs-stable;})
];
};
# My own library functions are imported here.
-1
View File
@@ -87,7 +87,6 @@
dig
tcpdump
traceroute
gping
curlie
wget
+1 -1
View File
@@ -1,4 +1,4 @@
{config}: {
{config, ...}: {
showmode = false; # Status line already shows this
backspace = ["indent" "eol" "start"];
termguicolors = true; # Required by multiple plugins
+5
View File
@@ -52,6 +52,11 @@
wget
];
fonts.packages = with pkgs; [
nerd-fonts.jetbrains-mono
monolisa
];
programs = {
fish.enable = true;
};