summaryrefslogtreecommitdiff
path: root/mini/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'mini/configuration.nix')
-rw-r--r--mini/configuration.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/mini/configuration.nix b/mini/configuration.nix
new file mode 100644
index 0000000..6cf1e4a
--- /dev/null
+++ b/mini/configuration.nix
@@ -0,0 +1,20 @@
+# Edit this configuration file to define what should be installed on
+# your system. Help is available in the configuration.nix(5) man page
+# and in the NixOS manual (accessible by running ‘nixos-help’).
+
+{ config, pkgs, ... }:
+
+{
+ imports =
+ [
+ # Include the results of the hardware scan.
+ ./hardware-configuration.nix
+
+ # Shared config of all machines
+ /home/cullmann/install/nixos/common.nix
+ ];
+
+ # host name & id
+ networking.hostName = "mini";
+ networking.hostId = "db461356";
+}