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
gnutar
gnupg
nerdfonts
zoxide
babelfish
@ -45,8 +44,6 @@
nodejs
cargo
python3
jetbrains.rust-rover
jetbrains.rider
# nix specific stuff
nixd

View File

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

View File

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

View File

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

View File

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