about summary refs log tree commit diff stats
path: root/hosts/IDOHVE/configuration.nix
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-01 20:22:29 +0100
committerene <ene@sils.li>2023-02-01 20:28:24 +0100
commita806c6776ea19ec068b7a60fde211310fd41d156 (patch)
treeb34083424e759459473b13b7c2f9f75cf9e8a80e /hosts/IDOHVE/configuration.nix
downloadnixos-config-a806c6776ea19ec068b7a60fde211310fd41d156.tar.gz
nixos-config-a806c6776ea19ec068b7a60fde211310fd41d156.zip
Initial commit
Diffstat (limited to 'hosts/IDOHVE/configuration.nix')
-rw-r--r--hosts/IDOHVE/configuration.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/hosts/IDOHVE/configuration.nix b/hosts/IDOHVE/configuration.nix
new file mode 100644
index 00000000..a3cf2b2c
--- /dev/null
+++ b/hosts/IDOHVE/configuration.nix
@@ -0,0 +1,23 @@
+# vim: ts=2
+{
+  config,
+  lib,
+  nixpkgs,
+  home-manager,
+  ...
+}: {
+  imports = [
+    ./hardware.nix
+    ./gpu.nix
+    ./networking.nix
+
+    ../../system/packages.nix
+    ../../system/users.nix
+
+    ../../services/nix.nix
+    ../../services/zsh.nix
+  ];
+
+
+  system.stateVersion = "23.05";
+}