Compare commits

...

4 Commits

Author SHA1 Message Date
David Crompton 6b14bf6513 gitignore: vim/neovim related files 2025-03-28 13:49:43 -04:00
David Crompton 2012586243 kcnhub: users: add ngilab_guest 2025-03-28 13:49:09 -04:00
David Crompton d4f70517a1 kcnhub: python: remove isoext 2025-03-28 13:48:40 -04:00
David Crompton 90e9706907 ssh: Enable X11 (retrospective commit) 2025-03-28 13:48:01 -04:00
6 changed files with 28 additions and 0 deletions

2
.gitignore vendored
View File

@ -3,3 +3,5 @@
result
result-*
# vim/neovim files
.swp

View File

@ -81,6 +81,16 @@
sops
# Used for Key Generation
age
# To try to make X11 forwarding work we install xauth
xorg.xauth
xorg.xhost
xorg.libX11
xorg.libXext
xorg.libXrender
xorg.libXtst
xorg.xorgserver
];
nix.registry.nixpkgs.flake = nixpkgs;

View File

@ -46,9 +46,12 @@
# fetching neuromorphic data:
tonic
# Librairies to deal with mesh
#pymeshlab
trimesh
#isoext
# dependencies trimesh
lxml # Parse XML documents.
networkx # Pure Python graph library

View File

@ -1,3 +1,4 @@
{ ... }: {
services.openssh.enable = true;
services.openssh.settings.X11Forwarding = true;
}

View File

@ -9,6 +9,7 @@
./users/srikar.nix
./users/zhenyangsun.nix
./users/ngilab.nix
./users/ngilab_guest.nix
./users/milad.nix
./users/nooshin.nix
./users/zoe.nix

View File

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