14 lines
334 B
Nix
14 lines
334 B
Nix
|
with import <nixpkgs> {};
|
||
|
{
|
||
|
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
|
||
|
cudatoolkit_11
|
||
|
];
|
||
|
};
|
||
|
}
|