diff options
| author | Mel <mel@rnrd.eu> | 2026-01-11 00:30:57 +0100 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2026-01-11 00:30:57 +0100 |
| commit | 6fdc47c9606ddd298c7c9e5f9b83ec095e89998b (patch) | |
| tree | 81f4fe97509ad7e2c1dbe2acc56671d73cbef3b0 /modules | |
| parent | ee5f89c69f60fbe2821b9fdf780146fbec73725c (diff) | |
| download | minerals-6fdc47c9606ddd298c7c9e5f9b83ec095e89998b.tar.zst minerals-6fdc47c9606ddd298c7c9e5f9b83ec095e89998b.zip | |
Update to NixOS 25.11
Signed-off-by: Mel <mel@rnrd.eu>
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" |
