Compare commits

...

2 Commits

Author SHA1 Message Date
David Crompton 5a889d63f0 NVIDIA: Add Cudatoolkit to systemPackages 2024-11-04 10:20:36 -05:00
David Crompton b61299b0b2 KCNHUB: users: add Iffat 2024-07-31 15:45:56 -04:00
3 changed files with 17 additions and 0 deletions

View File

@ -34,6 +34,11 @@
nixpkgs.config.allowUnfree = true;
nixpkgs.config.cudaSupport = true;
# Add cuda to system environment
environment.systemPackages = with pkgs; [
cudatoolkit
];
# Use Prebuilt Cached Versions of CUDA Packages
nix.settings = {
substituters = [

View File

@ -17,6 +17,7 @@
./users/michael.nix
./users/ryan.nix
./users/josh.nix
./users/iffat.nix
# Groups
./users/groups/admin.nix

View File

@ -0,0 +1,11 @@
{ pkgs, ... }: {
users.users.iffat = {
isNormalUser = true;
extraGroups = [ ];
homeSize = "50g";
homeProjectId = 118;
packages = with pkgs; [
];
};
}