From c038d0baf6bf2ff8729ae906ee76413537d2c1fd Mon Sep 17 00:00:00 2001 From: Adrian Lauterer Date: Tue, 18 Jun 2024 16:30:12 +0200 Subject: [PATCH] boromir updater --- machines/boromir/configuration.nix | 1 + machines/boromir/nvidia.nix | 2 +- profiles/development.nix | 38 ++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 profiles/development.nix diff --git a/machines/boromir/configuration.nix b/machines/boromir/configuration.nix index 00d0489..92eda6d 100644 --- a/machines/boromir/configuration.nix +++ b/machines/boromir/configuration.nix @@ -10,6 +10,7 @@ ./hardware-configuration.nix ./nvidia.nix ../../profiles/desktop.nix + ../../services/podman.nix ]; # Use the systemd-boot EFI boot loader. diff --git a/machines/boromir/nvidia.nix b/machines/boromir/nvidia.nix index c3b959e..7803b77 100644 --- a/machines/boromir/nvidia.nix +++ b/machines/boromir/nvidia.nix @@ -42,7 +42,7 @@ #install packages environment.systemPackages = with pkgs; [ #cudaPackages.cudnn - #cudaPackages.cudatoolkit + cudaPackages.cudatoolkit 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 diff --git a/profiles/development.nix b/profiles/development.nix new file mode 100644 index 0000000..e314d54 --- /dev/null +++ b/profiles/development.nix @@ -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 + + + + + + + ]; + +}