diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/kaworu/default.nix | 4 | ||||
| -rw-r--r-- | hosts/shinji/default.nix | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/hosts/kaworu/default.nix b/hosts/kaworu/default.nix index f20f400..48461d3 100644 --- a/hosts/kaworu/default.nix +++ b/hosts/kaworu/default.nix @@ -1,13 +1,13 @@ # Kaworu # System configuration for my desktop -{ inputs, ... }: { +{lib, ...}: { imports = [ ./hardware.nix ]; # options hostName = "kaworu"; - monitors = with inputs.self.lib.monitors; [ + monitors = with lib.monitors; [ asus acer ]; diff --git a/hosts/shinji/default.nix b/hosts/shinji/default.nix index 28c9658..916fa52 100644 --- a/hosts/shinji/default.nix +++ b/hosts/shinji/default.nix @@ -1,13 +1,17 @@ # Shinji # System configuration for my laptop -{pkgs, inputs, ...}: { +{ + pkgs, + lib, + ... +}: { imports = [ ./hardware.nix ]; # options hostName = "shinji"; - monitors = with inputs.self.lib.monitors; [ + monitors = with lib.monitors; [ { port = "eDP-1"; laptop = true; |