about summary refs log tree commit diff
path: root/users/sterni/machines/ingeborg/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/sterni/machines/ingeborg/default.nix')
-rw-r--r--users/sterni/machines/ingeborg/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/users/sterni/machines/ingeborg/default.nix b/users/sterni/machines/ingeborg/default.nix
new file mode 100644
index 0000000000..3012e5f4af
--- /dev/null
+++ b/users/sterni/machines/ingeborg/default.nix
@@ -0,0 +1,15 @@
+{ config, lib, pkgs, depot, ... }:
+
+{
+  imports = [
+    # Basic settings
+    ../../modules/common.nix
+    # These modules touch things related to booting (filesystems, initrd network…)
+    ./hardware.nix
+    ./network.nix
+  ];
+
+  config = {
+    system.stateVersion = "24.05";
+  };
+}