diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-05-26 13:27:07 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-05-26 13:27:07 -0400 |
| commit | a45de9e2e216cf73e976192814cdbdbb9164be30 (patch) | |
| tree | 4c2cb500b9d568693597a676ef2b8d27a93284d3 /hosts | |
| parent | prepare kaworu host for new pc (diff) | |
| download | dotfiles-nix-a45de9e2e216cf73e976192814cdbdbb9164be30.tar.gz dotfiles-nix-a45de9e2e216cf73e976192814cdbdbb9164be30.tar.bz2 dotfiles-nix-a45de9e2e216cf73e976192814cdbdbb9164be30.zip | |
make lib extendable with our additions
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; |