release modifications

This commit is contained in:
Wyatt J. Miller 2025-05-24 14:08:12 -04:00
parent c7fc3f63fd
commit 6fb0e19fc5
5 changed files with 13 additions and 15 deletions

View File

@ -37,7 +37,6 @@
tree tree
gnutar gnutar
gnupg gnupg
nerdfonts
zoxide zoxide
babelfish babelfish
@ -45,8 +44,6 @@
nodejs nodejs
cargo cargo
python3 python3
jetbrains.rust-rover
jetbrains.rider
# nix specific stuff # nix specific stuff
nixd nixd

View File

@ -57,7 +57,7 @@
programs.zsh = { programs.zsh = {
enable = true; enable = true;
initExtra = '' initContent = ''
if [[ -z "$BASH_EXECUTION_STRING" ]]; then if [[ -z "$BASH_EXECUTION_STRING" ]]; then
if [[ -n "$ZSH_VERSION" ]]; then if [[ -n "$ZSH_VERSION" ]]; then
LOGIN_OPTION="--login" LOGIN_OPTION="--login"

View File

@ -3,12 +3,13 @@
lib, lib,
... ...
}: { }: {
fonts.packages = with pkgs; [ fonts.packages = with pkgs;
nerdfonts [
noto-fonts noto-fonts
noto-fonts-emoji noto-fonts-emoji
liberation_ttf liberation_ttf
noto-fonts-cjk-sans noto-fonts-cjk-sans
monaspace monaspace
]; ]
++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts);
} }

View File

@ -62,7 +62,7 @@ in {
(mkIf (cfg.gpuVendor == "amd") { (mkIf (cfg.gpuVendor == "amd") {
services.xserver.videoDrivers = ["amdgpu"]; services.xserver.videoDrivers = ["amdgpu"];
hardware.opengl.extraPackages = with pkgs; [ hardware.graphics.extraPackages = with pkgs; [
amdvlk amdvlk
]; ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@ -72,7 +72,7 @@ in {
(mkIf (cfg.gpuVendor == "intel") { (mkIf (cfg.gpuVendor == "intel") {
services.xserver.videoDrivers = ["modesetting"]; services.xserver.videoDrivers = ["modesetting"];
hardware.opengl.extraPackages = with pkgs; [ hardware.graphics.extraPackages = with pkgs; [
intel-media-driver intel-media-driver
intel-compute-runtime intel-compute-runtime
]; ];

View File

@ -62,7 +62,7 @@ in {
}; };
networking.networkmanager = { networking.networkmanager = {
enable = lib.mkForce cfg.networkManager.enable; enable = lib.mkForce cfg.networkManager.enable;
packages = cfg.networkManager.extraPlugins; plugins = cfg.networkManager.extraPlugins;
}; };
}; };
} }