No known key found for this signature in database
GPG Key ID: B4C3BF012D9B26BE
3 changed files with
15 additions and
2 deletions
-
TODO.md
-
machines/nfs/default.nix
-
machines/nfs/jumphost.nix
|
@ -7,7 +7,6 @@ |
|
|
|
|
|
|
|
|
- Quota per user on homedir |
|
|
- Quota per user on homedir |
|
|
|
|
|
|
|
|
- Configure user env on client (using envfs?) |
|
|
|
|
|
- Move ldap to subdomain |
|
|
- Move ldap to subdomain |
|
|
- Remove x-tools like xterm |
|
|
- Remove x-tools like xterm |
|
|
- A fancy background image? |
|
|
- A fancy background image? |
|
|
|
@ -6,7 +6,7 @@ |
|
|
./cache.nix |
|
|
./cache.nix |
|
|
./netinstaller.nix |
|
|
./netinstaller.nix |
|
|
./wol.nix |
|
|
./wol.nix |
|
|
../../client/users.nix |
|
|
|
|
|
|
|
|
./jumphost.nix |
|
|
]; |
|
|
]; |
|
|
|
|
|
|
|
|
deployment = { |
|
|
deployment = { |
|
|
|
@ -0,0 +1,14 @@ |
|
|
|
|
|
{ lib, config, ... }: |
|
|
|
|
|
|
|
|
|
|
|
with lib; |
|
|
|
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
imports = [ |
|
|
|
|
|
../../client/users.nix |
|
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
networking.extraHosts = concatMapStringsSep "\n" |
|
|
|
|
|
({ name, value }: "${value.ip} pc${name} pc${name}.${config.networking.domain}") |
|
|
|
|
|
(attrsToList (import ../../clients.nix)); |
|
|
|
|
|
} |
|
|
|
|
|
|