diff --git a/home-manager/users/nathan/default.nix b/home-manager/users/nathan/default.nix index db5758b..8a48ca3 100644 --- a/home-manager/users/nathan/default.nix +++ b/home-manager/users/nathan/default.nix @@ -48,6 +48,10 @@ }; }; + fonts = { + packages = with pkgs; [ nerd-fonts.fira-code ]; + }; + services.mpris-proxy.enable = true; programs.ssh = { diff --git a/system-config/configuration/iso/default.nix b/system-config/configuration/iso/default.nix index 88055a4..059010f 100644 --- a/system-config/configuration/iso/default.nix +++ b/system-config/configuration/iso/default.nix @@ -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 ]; }; } diff --git a/system-config/configuration/laptop/default.nix b/system-config/configuration/laptop/default.nix index 503419a..7c0e05b 100644 --- a/system-config/configuration/laptop/default.nix +++ b/system-config/configuration/laptop/default.nix @@ -27,6 +27,7 @@ loader = { systemd-boot.enable = true; efi.canTouchEfiVariables = true; + timeout = null; }; kernelParams = [ "snd-intel-dspcfg.dsp_driver=1" ]; };