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 + + + + + + + ]; + +}