diff options
author | sinanmohd <sinan@firemail.cc> | 2023-07-19 07:51:11 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-07-19 20:49:15 +0530 |
commit | 6bf688b321f214633270f7832abfd78e5c03180d (patch) | |
tree | 3f52c4c1c2adfd516227b29dc9aa4b33202ce061 | |
parent | c95c0e6acc4c9d14409b5b1b2fdcb098f4f901f3 (diff) |
cleanup: uniform code style
-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"; |