summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configuration.nix4
-rw-r--r--hardware/cez.nix12
2 files changed, 12 insertions, 4 deletions
diff --git a/configuration.nix b/configuration.nix
index 715d0ae..0fdcc54 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -13,10 +13,6 @@
};
# netwroking
- networking = {
- hostName = "cez";
- wireless.iwd.enable = true;
- };
time.timeZone = "Asia/Kolkata";
# sound.
diff --git a/hardware/cez.nix b/hardware/cez.nix
new file mode 100644
index 0000000..100f284
--- /dev/null
+++ b/hardware/cez.nix
@@ -0,0 +1,12 @@
+{ config, ... }:
+
+{
+ # netwroking
+ networking = {
+ hostName = "cez";
+ wireless.iwd.enable = true;
+ };
+
+ # fde
+ boot.initrd.luks.reusePassphrases = true;
+}