Compare commits
3 Commits
e48e85efca
...
0459a4755e
| Author | SHA1 | Date | |
|---|---|---|---|
| 0459a4755e | |||
| cc685690f5 | |||
| bafc844394 |
@@ -55,9 +55,6 @@
|
|||||||
|
|
||||||
# List services that you want to enable:
|
# List services that you want to enable:
|
||||||
|
|
||||||
# Enable the OpenSSH daemon.
|
|
||||||
services.openssh.enable = true;
|
|
||||||
|
|
||||||
# Open ports in the firewall.
|
# Open ports in the firewall.
|
||||||
# networking.firewall.allowedTCPPorts = [ ... ];
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
log.date = "iso"; # ISO 8601 date format
|
log.date = "iso"; # ISO 8601 date format
|
||||||
# Conflict resolution style for readable diffs
|
# Conflict resolution style for readable diffs
|
||||||
merge.conflictStyle = "diff3";
|
merge.conflictStyle = "diff3";
|
||||||
|
safe = {
|
||||||
|
directory = [ "/home/LillyOS" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -16,4 +16,4 @@ let
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = module_files;
|
imports = module_files;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,16 +20,17 @@
|
|||||||
"EXCLUDE_PATTERN" = "";
|
"EXCLUDE_PATTERN" = "";
|
||||||
"GIT_BRANCH" = "main";
|
"GIT_BRANCH" = "main";
|
||||||
"GIT_REMOTE" = "origin";
|
"GIT_REMOTE" = "origin";
|
||||||
"GIT_WATCH_DIR" = "/app/LillyOS";
|
"GIT_WATCH_DIR" = "/home/LillyOS";
|
||||||
"PULL_BEFORE_PUSH" = "true";
|
"PULL_BEFORE_PUSH" = "true";
|
||||||
"SKIP_IF_MERGING" = "false";
|
"SKIP_IF_MERGING" = "false";
|
||||||
"SLEEP_TIME" = "10";
|
"SLEEP_TIME" = "10";
|
||||||
"VERBOSE" = "false";
|
"VERBOSE" = "false";
|
||||||
};
|
};
|
||||||
volumes = [
|
volumes = [
|
||||||
"${/home/lilly/.config/git/config}:/root/.gitconfig:ro"
|
"/home/lilly/.config/git/config:/root/.gitconfig:ro"
|
||||||
|
"/home/lilly/.ssh/known_hosts:/root/.ssh/known_hosts"
|
||||||
"/home/lilly/.ssh/id_ed25519:/root/.ssh/id_ed25519:ro"
|
"/home/lilly/.ssh/id_ed25519:/root/.ssh/id_ed25519:ro"
|
||||||
"/home/lilly/LillyOS:/app/LillyOS:rw"
|
"/home/lilly/LillyOS:/home/LillyOS:rw"
|
||||||
];
|
];
|
||||||
log-driver = "journald";
|
log-driver = "journald";
|
||||||
extraOptions = [
|
extraOptions = [
|
||||||
|
|||||||
4
modules/cli/ssh.nix
Normal file
4
modules/cli/ssh.nix
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
# Enable the OpenSSH daemon.
|
||||||
|
services.openssh.enable = true;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user