diff options
-rw-r--r-- | configuration.nix | 5 | ||||
-rw-r--r-- | hardware/cez.nix | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/configuration.nix b/configuration.nix index 52000e9..b2d8bb0 100644 --- a/configuration.nix +++ b/configuration.nix @@ -4,11 +4,10 @@ let user = "sinan"; in { - imports = - [ + imports = [ ./hardware-configuration.nix # hw scan ./hardware/cez.nix - ]; + ]; # boot boot = { diff --git a/hardware/cez.nix b/hardware/cez.nix index 3d7bcae..ec74dc2 100644 --- a/hardware/cez.nix +++ b/hardware/cez.nix @@ -1,12 +1,11 @@ { config, ... }: { - imports = - [ + imports = [ ../features/wayland.nix ../features/kaysshfs.nix ../features/development.nix - ]; + ]; networking = { hostName = "cez"; |