System/Darwinix: Add fonts
This commit is contained in:
12
flake.nix
12
flake.nix
@ -152,7 +152,17 @@
|
|||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
config.allowUnfreePredicate = pkg: 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.
|
# My own library functions are imported here.
|
||||||
|
|||||||
@ -87,7 +87,6 @@
|
|||||||
|
|
||||||
dig
|
dig
|
||||||
tcpdump
|
tcpdump
|
||||||
traceroute
|
|
||||||
gping
|
gping
|
||||||
curlie
|
curlie
|
||||||
wget
|
wget
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{config}: {
|
{config, ...}: {
|
||||||
showmode = false; # Status line already shows this
|
showmode = false; # Status line already shows this
|
||||||
backspace = ["indent" "eol" "start"];
|
backspace = ["indent" "eol" "start"];
|
||||||
termguicolors = true; # Required by multiple plugins
|
termguicolors = true; # Required by multiple plugins
|
||||||
|
|||||||
@ -52,6 +52,11 @@
|
|||||||
wget
|
wget
|
||||||
];
|
];
|
||||||
|
|
||||||
|
fonts.packages = with pkgs; [
|
||||||
|
nerd-fonts.jetbrains-mono
|
||||||
|
monolisa
|
||||||
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
fish.enable = true;
|
fish.enable = true;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user