Compare commits
4 Commits
65232cfed3
...
6b14bf6513
Author | SHA1 | Date |
---|---|---|
|
6b14bf6513 | |
|
2012586243 | |
|
d4f70517a1 | |
|
90e9706907 |
|
@ -3,3 +3,5 @@
|
||||||
result
|
result
|
||||||
result-*
|
result-*
|
||||||
|
|
||||||
|
# vim/neovim files
|
||||||
|
.swp
|
||||||
|
|
|
@ -81,6 +81,16 @@
|
||||||
sops
|
sops
|
||||||
# Used for Key Generation
|
# Used for Key Generation
|
||||||
age
|
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;
|
nix.registry.nixpkgs.flake = nixpkgs;
|
||||||
|
|
|
@ -46,9 +46,12 @@
|
||||||
# fetching neuromorphic data:
|
# fetching neuromorphic data:
|
||||||
tonic
|
tonic
|
||||||
|
|
||||||
|
|
||||||
# Librairies to deal with mesh
|
# Librairies to deal with mesh
|
||||||
#pymeshlab
|
#pymeshlab
|
||||||
trimesh
|
trimesh
|
||||||
|
#isoext
|
||||||
|
|
||||||
# dependencies trimesh
|
# dependencies trimesh
|
||||||
lxml # Parse XML documents.
|
lxml # Parse XML documents.
|
||||||
networkx # Pure Python graph library
|
networkx # Pure Python graph library
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
|
services.openssh.settings.X11Forwarding = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
./users/srikar.nix
|
./users/srikar.nix
|
||||||
./users/zhenyangsun.nix
|
./users/zhenyangsun.nix
|
||||||
./users/ngilab.nix
|
./users/ngilab.nix
|
||||||
|
./users/ngilab_guest.nix
|
||||||
./users/milad.nix
|
./users/milad.nix
|
||||||
./users/nooshin.nix
|
./users/nooshin.nix
|
||||||
./users/zoe.nix
|
./users/zoe.nix
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
users.users.ngilab_guest = {
|
||||||
|
isNormalUser = true;
|
||||||
|
extraGroups = [ ];
|
||||||
|
homeSize = "50g";
|
||||||
|
homeProjectId = 121;
|
||||||
|
packages = with pkgs; [
|
||||||
|
blender
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue