summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hosts/kronos/configuration.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/hosts/kronos/configuration.nix b/hosts/kronos/configuration.nix
index e69de29..2696949 100644
--- a/hosts/kronos/configuration.nix
+++ b/hosts/kronos/configuration.nix
@@ -0,0 +1,15 @@
+{
+ lib,
+ pkgs,
+ ...
+}: {
+ imports = [
+ ./hardware-configuration.nix
+ ../../common.nix
+ ];
+
+ networking = {
+ hostName = "kronos";
+ networkmanager.enable = true;
+ };
+}