diff options
Diffstat (limited to '')
| -rw-r--r-- | hosts/thinkpad/default.nix | 8 | ||||
| -rw-r--r-- | hosts/thinkpad/hardware.nix | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/hosts/thinkpad/default.nix b/hosts/thinkpad/default.nix index 3d537c7..5560fb4 100644 --- a/hosts/thinkpad/default.nix +++ b/hosts/thinkpad/default.nix @@ -1,6 +1,6 @@ # Thinkpad #System configuration for my thinkpad -{...}: { +_: { imports = [ ./hardware.nix ./sops.nix @@ -11,14 +11,15 @@ hostName = "thinkpad"; monitors = [ { - name = "eDP-1"; + port = "eDP-1"; + laptop = true; scale = 1.0; } ]; # modules apps = { - astal.enable = true; + caelestia.enable = true; hyprlock.enable = true; kitty.enable = true; }; @@ -38,6 +39,7 @@ # modules battery = true; bluetooth = true; + network = true; fingerprint = true; tpm = true; } diff --git a/hosts/thinkpad/hardware.nix b/hosts/thinkpad/hardware.nix index 95f9ffd..109f6c0 100644 --- a/hosts/thinkpad/hardware.nix +++ b/hosts/thinkpad/hardware.nix @@ -1,4 +1,4 @@ -{...}: { +_: { # bootloader boot.loader.systemd-boot.enable = true; boot.loader.efi = { |