boromir updater
This commit is contained in:
parent
f87ffb375a
commit
c038d0baf6
|
@ -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.
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue