summaryrefslogtreecommitdiff
path: root/mini/configuration.nix
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2023-02-15 21:19:56 +0100
committerChristoph Cullmann <cullmann@kde.org>2023-02-15 21:19:56 +0100
commit365e05bda19d4e721f633a2a1c9440ad3017598b (patch)
tree0cc0427a32e4f7f0b5577385c6c17cc7ec97f2a9 /mini/configuration.nix
parentbc1a776ebfedc12092d37b22de0cd9297dc15071 (diff)
liku dead, mini alive
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";
+}