Compare commits

...

2 Commits

Author SHA1 Message Date
Adrian Lauterer 1c389114a1 disabled stylix 2024-06-18 16:32:23 +02:00
Adrian Lauterer c038d0baf6 boromir updater 2024-06-18 16:31:11 +02:00
5 changed files with 42 additions and 3 deletions

View File

@ -89,7 +89,7 @@
home-manager.users."gunalx" = import ./home/full.nix;
}
#need to choose one. The nixos one has bootloader and display manager in addition to the home manager one.
inputs.stylix.nixosModules.stylix
#inputs.stylix.nixosModules.stylix
#inputs.stylix.homeManagerModules.stylix
];
};

View File

@ -4,7 +4,7 @@
./base.nix
./code.nix
./sway.nix
./stylix.nix
#./stylix.nix
];
home.packages = with pkgs; [

View File

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

View File

@ -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

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