summaryrefslogtreecommitdiff
path: root/hosts/antares/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/antares/configuration.nix')
-rw-r--r--hosts/antares/configuration.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/hosts/antares/configuration.nix b/hosts/antares/configuration.nix
index f942e6d..a32bb61 100644
--- a/hosts/antares/configuration.nix
+++ b/hosts/antares/configuration.nix
@@ -18,11 +18,24 @@
};
services.openssh.enable = true;
+ networking.hostName = "antares";
+ time.timeZone = "Europe/Berlin";
+
+
+
environment.systemPackages = map lib.lowPrio [
pkgs.curl
pkgs.gitMinimal
];
+ users.users.dk = {
+ isNormalUser = true;
+ description = "Dominik Kaiser";
+ extraGroups = [ "wheel" ];
+ openssh.authorizedKeys.keys = [
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICtL2eG098LhkFPR4N5e44XMq60uvCUCOuKMYs5zjg6f"
+ ];
+ };
users.users.root.openssh.authorizedKeys.keys = [
# change this to your ssh key
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICtL2eG098LhkFPR4N5e44XMq60uvCUCOuKMYs5zjg6f dk@nixos"