Changes for lambda
This commit is contained in:
parent
b415eb0550
commit
0a179163b3
|
@ -43,7 +43,7 @@ in {
|
||||||
"/" = {
|
"/" = {
|
||||||
device = "none";
|
device = "none";
|
||||||
fsType = "tmpfs";
|
fsType = "tmpfs";
|
||||||
options = [ "noexec" ];
|
options = [ "noexec" "mode=755" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
"/nix" = {
|
"/nix" = {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
let
|
let
|
||||||
shinobi-port = "7080";
|
shinobi-port = "7080";
|
||||||
shinobi-od-port = "7082";
|
shinobi-od-port = "7082";
|
||||||
state-dir = /state;
|
state-dir = "/state"; # This must be a string!
|
||||||
|
|
||||||
in {
|
in {
|
||||||
boot.loader.grub.copyKernels = true;
|
boot.loader.grub.copyKernels = true;
|
||||||
|
@ -37,7 +37,7 @@ in {
|
||||||
"L /root/.gnupg - - - - ${state-dir}/user/root/gnupg"
|
"L /root/.gnupg - - - - ${state-dir}/user/root/gnupg"
|
||||||
# "L /root/.emacs.d - - - - ${state-dir}/user/root/emacs.d"
|
# "L /root/.emacs.d - - - - ${state-dir}/user/root/emacs.d"
|
||||||
"L /root/.ssh/id_rsa - - - - ${state-dir}/user/root/ssh/id_rsa"
|
"L /root/.ssh/id_rsa - - - - ${state-dir}/user/root/ssh/id_rsa"
|
||||||
"L /root/.ssh/id_rsa.pub - - - - ${state-dir}/state/root/ssh/id_rsa.pub"
|
"L /root/.ssh/id_rsa.pub - - - - ${state-dir}/user/root/ssh/id_rsa.pub"
|
||||||
"L /root/.ssh/known_hosts - - - - ${state-dir}/user/root/ssh/known_hosts"
|
"L /root/.ssh/known_hosts - - - - ${state-dir}/user/root/ssh/known_hosts"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue