diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-07-10 16:30:59 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-07-10 16:32:37 +0530 |
commit | 877a28727056e415b25a2dc4572fd2263eca2ece (patch) | |
tree | 53c3d65261a102d26018f710fdc107c3a66089df | |
parent | 2b6d28e8113264307198d2d1d048f1bfe1934600 (diff) |
hardware: import features from hardware/*
-rw-r--r-- | configuration.nix | 2 | ||||
-rw-r--r-- | hardware/cez.nix | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/configuration.nix b/configuration.nix index fe22076..40b5514 100644 --- a/configuration.nix +++ b/configuration.nix @@ -8,8 +8,6 @@ in [ ./hardware-configuration.nix # hw scan ./hardware/cez.nix - ./features/wayland.nix - ./features/kaysshfs.nix ]; # boot diff --git a/hardware/cez.nix b/hardware/cez.nix index e0cf620..6df9241 100644 --- a/hardware/cez.nix +++ b/hardware/cez.nix @@ -1,6 +1,12 @@ { config, ... }: { + imports = + [ + ../features/wayland.nix + ../features/kaysshfs.nix + ]; + networking = { hostName = "cez"; wireless.iwd.enable = true; |