summary refs log tree commit diff
path: root/machines/corsac/devices.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/corsac/devices.nix')
-rw-r--r--machines/corsac/devices.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/machines/corsac/devices.nix b/machines/corsac/devices.nix
new file mode 100644
index 0000000..71ef8d2
--- /dev/null
+++ b/machines/corsac/devices.nix
@@ -0,0 +1,16 @@
+{ config, pkgs, ... }:
+
+{
+  # boot settings
+  boot = {
+    loader = { 
+      systemd-boot.enable = true;
+      efi.canTouchEfiVariables = true;
+    };
+  
+    initrd.systemd.enable = true; 
+  };
+
+  # internet
+  networking.networkmanager.enable = true;
+}