diff options
author | sinanmohd <sinan@firemail.cc> | 2023-07-10 16:30:59 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-07-10 16:32:37 +0530 |
commit | 9e4c70def9304270fc9ec45a84ab03f9eb324090 (patch) | |
tree | 53c3d65261a102d26018f710fdc107c3a66089df | |
parent | 0e049c1ce0de4376b1a790a44554b7373aefed18 (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; |