diff options
| author | Nathan P. Reiner <nathan@nathanreiner.xyz> | 2026-05-06 07:01:42 +0200 |
|---|---|---|
| committer | Nathan P. Reiner <nathan@nathanreiner.xyz> | 2026-05-06 07:01:42 +0200 |
| commit | 4082a783bf418eca4a013d5194ed7c7d4257d255 (patch) | |
| tree | 84a7b414dc03db2a53508e2c38cc0c32d043298f | |
| parent | dbda697dc4830b973858f79e7057fe1a5922729c (diff) | |
nixbook-pro: add configuration
| -rw-r--r-- | hosts/nixbook-pro/default.nix | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/hosts/nixbook-pro/default.nix b/hosts/nixbook-pro/default.nix index 475ff43..ed59bf9 100644 --- a/hosts/nixbook-pro/default.nix +++ b/hosts/nixbook-pro/default.nix @@ -1,7 +1,3 @@ -# Edit this configuration file to define what should be installed on -# your system. Help is available in the configuration.nix(5) man page, on -# https://search.nixos.org/options and in the NixOS manual (`nixos-help`). - { config, lib, pkgs, ... }: { @@ -10,7 +6,10 @@ ../../modules/hyprland/monitor.nix ]; - networking.hostName = "nixbook-pro"; + networking = { + hostName = "nixbook-pro"; + enableB43Firmware = true; + }; boot.loader = { efi.canTouchEfiVariables = true; @@ -23,11 +22,11 @@ }; hyprland.monitors = { - default = { - resolution = "preferred"; - position = "auto"; - scale = 1; - }; + default = { + resolution = "preferred"; + position = "auto"; + scale = 1; + }; }; webtray.instances = {}; |