diff options
| author | Nathan P. Reiner <nathan@nathanreiner.xyz> | 2026-05-05 23:22:45 +0000 |
|---|---|---|
| committer | Nathan P. Reiner <nathan@nathanreiner.xyz> | 2026-05-05 23:22:45 +0000 |
| commit | dbda697dc4830b973858f79e7057fe1a5922729c (patch) | |
| tree | 9ac56340ae59e2182271e5a7c383e4479fc20293 /hosts/nixbook-pro/default.nix | |
| parent | d21ead5606fb0b076e011a46368470f57bf812c5 (diff) | |
add nixbook-pro
Diffstat (limited to 'hosts/nixbook-pro/default.nix')
| -rw-r--r-- | hosts/nixbook-pro/default.nix | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/hosts/nixbook-pro/default.nix b/hosts/nixbook-pro/default.nix new file mode 100644 index 0000000..475ff43 --- /dev/null +++ b/hosts/nixbook-pro/default.nix @@ -0,0 +1,38 @@ +# 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, ... }: + +{ + imports = [ + ./hardware.nix + ../../modules/hyprland/monitor.nix + ]; + + networking.hostName = "nixbook-pro"; + + 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? + +} + |