fonts please

This commit is contained in:
2025-08-30 21:09:52 -05:00
parent 6474b10e9f
commit 325e4c63d5
3 changed files with 15 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, inputs, modulesPath, ... }: {
{ lib, pkgs, inputs, modulesPath, ... }: {
imports = with inputs; [
@@ -9,6 +9,10 @@
];
config = {
fonts.packages = lib.mkForce (with pkgs; [ nerd-fonts.fira-code ]);
system.stateVersion = "25.05";
nixpkgs.hostPlatform = "x86_64-linux";
@@ -28,6 +32,11 @@
];
};
networking = {
nameservers = [ "1.1.1.1" "1.0.0.1" ];
networkmanager.enable = true;
};
programs.zsh.enable = true;
environment.shells = with pkgs; [ zsh bashInteractive ];
@@ -93,8 +102,6 @@
};
};
system.stateVersion = "25.05";
fonts.packages = with pkgs; [ nerd-fonts.fira-code ];
};
}