mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
Updated nix to 25.11
Fixed failing assertions: - xdg.portal now requires `environment.pathsToLink` - `virtualisation.libvirtd.qemu.ovmf` is deprecated - noto-fonts-emoji -> noto-fonts-color-emoji - `rofi-wayland` has been merged into `rofi` - `sumneko-lua-language-server` -> `lua-language-server` - `glxinfo` -> `mesa-demos`
This commit is contained in:
parent
f8ab0e3ff0
commit
957b5f018f
11 changed files with 39 additions and 58 deletions
|
|
@ -21,8 +21,9 @@
|
|||
vulkan-loader
|
||||
vulkan-tools
|
||||
vulkan-extension-layer
|
||||
glxinfo
|
||||
|
||||
mesa
|
||||
mesa-demos
|
||||
|
||||
cudaPackages.cudatoolkit
|
||||
cudaPackages.cudnn
|
||||
|
|
@ -67,7 +68,6 @@
|
|||
enable = true;
|
||||
qemu = {
|
||||
runAsRoot = true;
|
||||
ovmf.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -44,11 +44,17 @@
|
|||
#timeout = null;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
git
|
||||
usbutils
|
||||
];
|
||||
environment = {
|
||||
systemPackages = with pkgs; [
|
||||
vim
|
||||
git
|
||||
usbutils
|
||||
];
|
||||
pathsToLink = [
|
||||
"/share/applications"
|
||||
"/share/xdg-desktop-portal"
|
||||
];
|
||||
};
|
||||
|
||||
fonts.packages = with pkgs; [
|
||||
nerd-fonts.terminess-ttf
|
||||
|
|
|
|||
|
|
@ -38,8 +38,6 @@
|
|||
mesa-demos
|
||||
|
||||
libGL
|
||||
|
||||
glxinfo
|
||||
];
|
||||
|
||||
fileSystems = {
|
||||
|
|
@ -72,7 +70,6 @@
|
|||
enable = true;
|
||||
qemu = {
|
||||
runAsRoot = true;
|
||||
ovmf.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue