boromir updater

This commit is contained in:
Adrian Lauterer 2024-06-18 16:30:12 +02:00
parent f87ffb375a
commit c038d0baf6
3 changed files with 40 additions and 1 deletions

View File

@ -10,6 +10,7 @@
./hardware-configuration.nix ./hardware-configuration.nix
./nvidia.nix ./nvidia.nix
../../profiles/desktop.nix ../../profiles/desktop.nix
../../services/podman.nix
]; ];
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.

View File

@ -42,7 +42,7 @@
#install packages #install packages
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
#cudaPackages.cudnn #cudaPackages.cudnn
#cudaPackages.cudatoolkit cudaPackages.cudatoolkit
nvtopPackages.nvidia nvtopPackages.nvidia
#cudaPackages.tensorrt_8_6_0 #needs to be added manually, to the store and is a pain because of the license agreement and garbage collection #cudaPackages.tensorrt_8_6_0 #needs to be added manually, to the store and is a pain because of the license agreement and garbage collection

38
profiles/development.nix Normal file
View File

@ -0,0 +1,38 @@
{ config, pkgs, lib, ... }:
{
imports =
[
./base.nix
./ai.nix
];
environment.systemPackages = with pkgs; [
texliveFull
pandoc
pandoc-plantuml-filter
plantuml
haskellPackages.pandoc-plot
pandoc-imagine
pandoc-katex
haskellPackages.pandoc-cli
pandoc-include
markdownlint-cli
libsForQt5.kate
poetry
gcc
cargo
rustup
];
}