summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--odin.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/odin.nix b/odin.nix
index d092061e..9e29474e 100644
--- a/odin.nix
+++ b/odin.nix
@@ -25,6 +25,14 @@
25 25
26 boot.extraTTYs = [ "tty7" ]; 26 boot.extraTTYs = [ "tty7" ];
27 27
28 boot.initrd.network = {
29 enable = true;
30 ssh = {
31 enable = true;
32 authorizedKeys = with users.users."gkleen".openssh; map builtins.readFile authorizedKeys.keyFiles ++ authorizedKeys.keys;
33 };
34 };
35
28 networking.hostName = "odin"; # Define your hostname. 36 networking.hostName = "odin"; # Define your hostname.
29 37
30 # Select internationalisation properties. 38 # Select internationalisation properties.