Compare commits
2 Commits
f87ffb375a
...
1c389114a1
Author | SHA1 | Date |
---|---|---|
Adrian Lauterer | 1c389114a1 | |
Adrian Lauterer | c038d0baf6 |
|
@ -89,7 +89,7 @@
|
||||||
home-manager.users."gunalx" = import ./home/full.nix;
|
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.
|
#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
|
#inputs.stylix.homeManagerModules.stylix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
./base.nix
|
./base.nix
|
||||||
./code.nix
|
./code.nix
|
||||||
./sway.nix
|
./sway.nix
|
||||||
./stylix.nix
|
#./stylix.nix
|
||||||
|
|
||||||
];
|
];
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
|
@ -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