diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/fonts.nix | 2 | ||||
| -rw-r--r-- | modules/hardware-keys.nix | 1 | ||||
| -rw-r--r-- | modules/hardware/amd-gpu.nix | 5 | ||||
| -rw-r--r-- | modules/home/zed.nix | 5 |
4 files changed, 5 insertions, 8 deletions
diff --git a/modules/fonts.nix b/modules/fonts.nix index b500b2e..f9db450 100644 --- a/modules/fonts.nix +++ b/modules/fonts.nix @@ -9,7 +9,7 @@ meslo-lg input-fonts fira fira-math fira-code - corefonts vistafonts + corefonts vista-fonts ]; }; } diff --git a/modules/hardware-keys.nix b/modules/hardware-keys.nix index a222a88..ccccca5 100644 --- a/modules/hardware-keys.nix +++ b/modules/hardware-keys.nix @@ -62,7 +62,6 @@ in yubikey-manager yubioath-flutter yubikey-personalization - yubikey-personalization-gui yubikey-touch-detector # install icon age-plugin-yubikey pam_u2f diff --git a/modules/hardware/amd-gpu.nix b/modules/hardware/amd-gpu.nix index cfaa974..1b52e20 100644 --- a/modules/hardware/amd-gpu.nix +++ b/modules/hardware/amd-gpu.nix @@ -7,11 +7,6 @@ hardware.graphics = { enable = true; enable32Bit = true; - - # use amdvlk in conjunction with amdgpu, - # applications can choose which one to use. - extraPackages = with pkgs; [ amdvlk ]; - extraPackages32 = with pkgs; [ driversi686Linux.amdvlk ]; }; services.xserver.videoDrivers = [ "amdgpu" ]; diff --git a/modules/home/zed.nix b/modules/home/zed.nix index e6e6182..dd59f0c 100644 --- a/modules/home/zed.nix +++ b/modules/home/zed.nix @@ -18,7 +18,10 @@ in { programs.zed-editor = { enable = true; - package = unstablePkgs.zed-editor; + # can be returned to unstable once cargo-nextest is integrated + # see: https://github.com/NixOS/nixpkgs/pull/478690 + # package = unstablePkgs.zed-editor; + package = pkgs.zed-editor; extensions = [ "nix" |
