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

@@ -48,6 +48,10 @@
};
};
fonts = {
packages = with pkgs; [ nerd-fonts.fira-code ];
};
services.mpris-proxy.enable = true;
programs.ssh = {

View File

@@ -1,4 +1,4 @@
{ config, pkgs, inputs, modulesPath, ... }: {
{ lib, pkgs, inputs, modulesPath, ... }: {
imports = with inputs; [
@@ -10,6 +10,10 @@
config = {
fonts.packages = lib.mkForce (with pkgs; [ nerd-fonts.fira-code ]);
system.stateVersion = "25.05";
nixpkgs.hostPlatform = "x86_64-linux";
boot = {
@@ -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 ];
};
}

View File

@@ -27,6 +27,7 @@
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
timeout = null;
};
kernelParams = [ "snd-intel-dspcfg.dsp_driver=1" ];
};