2023-11-29 22:56:30 +01:00
|
|
|
{users, pkgs, ...}:
|
2023-11-28 23:24:43 +01:00
|
|
|
{
|
|
|
|
users.extraUsers.mypackaegsstayinstoreffs = {
|
|
|
|
isNormalUser = true;
|
|
|
|
description = "dummy user to prevent nix gc from clearing out large packages";
|
|
|
|
packages = with pkgs; [
|
|
|
|
jetbrains.clion
|
|
|
|
jetbrains.pycharm-community
|
|
|
|
jetbrains.idea-community
|
2024-03-02 23:15:51 +01:00
|
|
|
# cudatoolkit_11
|
2023-11-28 23:24:43 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|