diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-05-06 09:12:23 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-05-06 09:12:23 +0200 |
| commit | b627fcc10bb7dce26ab5ca78a75cd330762aa96b (patch) | |
| tree | 1cd38df44a0474e043b4717d60092437a11c6f18 /hosts/nixbook-pro/default.nix | |
| parent | 20b43fdd36cc797b1b8f4c3572c8686f3dee95b4 (diff) | |
| parent | 4082a783bf418eca4a013d5194ed7c7d4257d255 (diff) | |
Merge branch 'master' of https://git.nathanreiner.xyz/nix/system
Diffstat (limited to 'hosts/nixbook-pro/default.nix')
| -rw-r--r-- | hosts/nixbook-pro/default.nix | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/hosts/nixbook-pro/default.nix b/hosts/nixbook-pro/default.nix new file mode 100644 index 0000000..ed59bf9 --- /dev/null +++ b/hosts/nixbook-pro/default.nix @@ -0,0 +1,37 @@ +{ config, lib, pkgs, ... }: + +{ + imports = [ + ./hardware.nix + ../../modules/hyprland/monitor.nix + ]; + + networking = { + hostName = "nixbook-pro"; + enableB43Firmware = true; + }; + + boot.loader = { + efi.canTouchEfiVariables = true; + grub = { + enable = true; + device = "nodev"; + efiSupport = true; + configurationLimit = 10; + }; + }; + + hyprland.monitors = { + default = { + resolution = "preferred"; + position = "auto"; + scale = 1; + }; + }; + + webtray.instances = {}; + + system.stateVersion = "25.11"; # Did you read the comment? + +} + |